Skip to content

Commit 8d2e519

Browse files
authored
chore: update links angular.io -> angular.dev (#606)
1 parent b0733a1 commit 8d2e519

File tree

10 files changed

+18
-12
lines changed

10 files changed

+18
-12
lines changed

projects/ngx-meta/api-extractor/tsconfig.api-extractor.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
/* To learn more about this file see: https://angular.io/config/tsconfig. */
1+
/* To learn more about Typescript configuration file see: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html
2+
For Angular-specific options: https://angular.dev/reference/configs/angular-compiler-options */
23
{
34
"extends": "../src/tsconfig.lib.json",
45
"compilerOptions": {

projects/ngx-meta/docs/content/guides/late-loading-modules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ export class BlogModule {}
9999

100100
If you migrated to standalone apps, where need for Angular modules is reduced, you may have followed [Angular's guide about lazy loading in standalone apps]
101101

102-
[Angular's guide about lazy loading in standalone apps]: https://angular.io/guide/standalone-components#routing-and-lazy-loading
102+
[Angular's guide about lazy loading in standalone apps]: https://v16.angular.io/guide/standalone-components#routing-and-lazy-loading
103103

104104
In there, to lazy load a route, you either dynamically import a component or many routes. If you dynamically import a component, check out next chapter about [adding a metadata module in a component](#component). Otherwise, keep reading.
105105

projects/ngx-meta/docs/includes/common-links.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
[Twitter Cards module]: /built-in-modules/twitter-cards/
1717
[bundle size issue]: https://github.com/davidlj95/ngx/issues/112
1818
[tree shaking]: https://developer.mozilla.org/en-US/docs/Glossary/Tree_shaking
19-
[Angular actively supported versions]: https://angular.io/guide/releases#actively-supported-versions
19+
[Angular actively supported versions]: https://angular.dev/reference/releases#actively-supported-versions

projects/ngx-meta/src/routing/src/ngx-meta-router-listener.service.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@ export const NAVIGATION_END_EVENT_TYPE = new NavigationEnd(0, '', '').type
1616

1717
@Injectable({ providedIn: 'root' })
1818
export class NgxMetaRouterListenerService implements OnDestroy {
19-
// Replace by `takeUntilDestroyed` when stable
20-
// https://angular.io/api/core/rxjs-interop/takeUntilDestroyed
19+
// Replace by `takeUntilDestroyed` when stable & oldest Angular supported version is v16 where it was introduced
20+
// https://angular.dev/api/core/rxjs-interop/takeUntilDestroyed
21+
// https://github.com/angular/angular/commit/e8831984601da631afc29f9fd72d36f57696f936
2122
private sub?: Subscription
2223

2324
constructor(

projects/ngx-meta/src/tsconfig.lib.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
/* To learn more about this file see: https://angular.io/config/tsconfig. */
1+
/* To learn more about Typescript configuration file see: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html
2+
For Angular-specific options: https://angular.dev/reference/configs/angular-compiler-options */
23
{
34
"extends": "../../../tsconfig.json",
45
"compilerOptions": {

projects/ngx-meta/src/tsconfig.lib.prod.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
/* To learn more about this file see: https://angular.io/config/tsconfig. */
1+
/* To learn more about Typescript configuration file see: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html
2+
For Angular-specific options: https://angular.dev/reference/configs/angular-compiler-options */
23
{
34
"extends": "./tsconfig.lib.json",
45
"compilerOptions": {

projects/ngx-meta/src/tsconfig.spec.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
/* To learn more about this file see: https://angular.io/config/tsconfig. */
1+
/* To learn more about Typescript configuration file see: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html
2+
For Angular-specific options: https://angular.dev/reference/configs/angular-compiler-options */
23
{
34
"extends": "../../../tsconfig.json",
45
"compilerOptions": {

projects/ngx-meta/src/types/angular.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ declare global {
66
/**
77
* Used to know if we're in dev mode, in the same fashion Angular does
88
*
9-
* Public API `isDevMode` (https://angular.io/api/core/isDevMode) is more
9+
* Public API `isDevMode` (https://angular.dev/api/core/isDevMode) is more
1010
* stable. However, given it's a function call, code under `if(isDevMode())`
1111
* can not tree-shaken. So to allow tree-shaking, using a `const` in the
1212
* same fashion Angular does for their packages. Simplifying the type to be

renovate.json5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@
5555
automerge: true,
5656
},
5757
// Angular v17.3.x compatibilities
58-
// https://angular.io/guide/versions
59-
// https://update.angular.io/?v=16.0-17.0 (zone.js)
58+
// https://angular.dev/reference/versions
59+
// https://angular.dev/update-guide?v=16.0-17.0&l=1
6060
{
6161
matchDepPrefixes: ['@angular'],
6262
matchFileNames: ['package.json'],

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
/* To learn more about this file see: https://angular.io/config/tsconfig. */
1+
/* To learn more about Typescript configuration file see: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html
2+
For Angular-specific options: https://angular.dev/reference/configs/angular-compiler-options */
23
{
34
"compileOnSave": false,
45
"compilerOptions": {

0 commit comments

Comments
 (0)