Skip to content

Commit

Permalink
chore: use GH Pages domain
Browse files Browse the repository at this point in the history
Signed-off-by: Ingo Bürk <[email protected]>
  • Loading branch information
Airblader committed Nov 7, 2022
1 parent 5c904c2 commit 9cfaed6
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported by contacting the project team at [email protected]. All
reported by contacting the project team. All
complaints will be reviewed and investigated and will result in a response that
is deemed necessary and appropriate to the circumstances. The project team is
obligated to maintain confidentiality with regard to the reporter of an incident.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![Gitter](https://img.shields.io/gitter/room/TNG/ngqp.svg?style=flat-square)](https://gitter.im/ngqp)

<p align="center">
<a href="https://ngqp.io">
<a href="https://tng.github.io/ngqp">
<img width="auto" height="72" src="https://raw.githubusercontent.com/TNG/ngqp/master/logo.svg?sanitize=true" alt="ngqp logo">
</a>
</p>
Expand All @@ -15,7 +15,7 @@
<p align="center">
Declaratively synchronize form controls with the URL
<br>
<a href="https://ngqp.io/#/docs"><strong>Documentation</strong></a>
<a href="https://tng.github.io/ngqp/#/docs"><strong>Documentation</strong></a>
</p>

## Description
Expand All @@ -30,7 +30,7 @@ from `@angular/forms`, making it intuitive to work with.
ng add @ngqp/core
```

Read the [Getting Started](https://www.ngqp.io/#/getting-started) page for information on how to use it.
Read the [Getting Started](https://www.tng.github.io/ngqp/#/getting-started) page for information on how to use it.

## Contributing

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
"core:release:publish": "yarn core:release:prepare && scripts/publish-release.sh",
"demo:build": "ng build ngqp-demo",
"demo:build:prod": "yarn demo:build --prod",
"demo:release:prepare": "yarn core:build:prod && yarn demo:build:prod --base-href=\"https://www.ngqp.io\" && yarn api-docs:build",
"demo:release:publish": "yarn demo:release:prepare && npx ngh --dir=dist/ngqp-demo --cname=\"www.ngqp.io\"",
"demo:release:prepare": "yarn core:build:prod && yarn demo:build:prod --base-href=\"https://tng.github.io/ngqp\" && yarn api-docs:build",
"demo:release:publish": "yarn demo:release:prepare && npx ngh --dir=dist/ngqp-demo --cname=\"tng.github.io/ngqp\"",
"demo:serve": "ng serve ngqp-demo",
"api-docs:build": "scripts/build-api-docs.sh",
"api-docs:serve": "compodoc -s -d ./dist/ngqp-demo/api-docs",
Expand Down Expand Up @@ -83,4 +83,4 @@
"tslint": "~6.1.0",
"typescript": "~4.0.3"
}
}
}
2 changes: 1 addition & 1 deletion projects/ngqp-demo/src/app/demo.component.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<header class="navbar navbar-expand navbar-dark flex-column flex-md-row bg-primary">
<a class="navbar-brand" routerLink="/" aria-label="ngqp.io">
<a class="navbar-brand" routerLink="/" aria-label="tng.github.io/ngqp">
<div class="d-inline-block align-middle logo-container">
<img src="assets/logo.svg" height="32" width="auto" />
</div>
Expand Down
8 changes: 4 additions & 4 deletions projects/ngqp-demo/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,22 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Search Engine -->
<meta name="Description" content="ngqp: Declaratively synchronize form controls with the URL">
<meta name="image" content="https://ngqp.io/assets/logo.png">
<meta name="image" content="https://tng.github.io/ngqp/assets/logo.png">
<!-- Google Analytics -->
<meta name="google-site-verification" content="_rmkextrVjfoVS84VML72tPIGtIRWY1PP2mkL7VVqoo" />
<!-- Twitter -->
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="ngqp">
<meta name="twitter:description" content="Declaratively synchronize form controls with the URL">
<meta name="twitter:image" content="https://ngqp.io/assets/logo.png" />
<meta name="twitter:image" content="https://tng.github.io/ngqp/assets/logo.png" />
<!-- Open Graph general (Facebook, Pinterest & Google+) -->
<meta name="og:title" content="ngqp">
<meta name="og:description" content="Declaratively synchronize form controls with the URL">
<meta name="og:url" content="https://ngqp.io">
<meta name="og:url" content="https://tng.github.io/ngqp">
<meta name="og:site_name" content="ngqp">
<meta name="og:locale" content="en">
<meta name="og:type" content="website">
<meta property="og:image" content="https://ngqp.io/assets/logo.png" />
<meta property="og:image" content="https://tng.github.io/ngqp/assets/logo.png" />
<meta property="og:image:type" content="image/png"/>

<link rel="icon" type="image/x-icon" href="favicon.ico">
Expand Down
4 changes: 2 additions & 2 deletions projects/ngqp-demo/src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngqp.io – Documentation for ngqp",
"short_name": "ngqp.io",
"name": "tng.github.io/ngqp – Documentation for ngqp",
"short_name": "tng.github.io/ngqp",
"theme_color": "#1976d2",
"background_color": "#fafafa",
"display": "standalone",
Expand Down
2 changes: 1 addition & 1 deletion projects/ngqp/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@ngqp/core",
"version": "14.1.0",
"description": "Synchronizing form controls with the URL for Angular",
"homepage": "https://ngqp.io",
"homepage": "https://tng.github.io/ngqp",
"author": "Ingo Bürk",
"license": "MIT",
"bugs": "https://github.com/TNG/ngqp/issues",
Expand Down

0 comments on commit 9cfaed6

Please sign in to comment.