angular/packages/core/schematics/test
Andrew Kushnir 7bee28d037 feat(router): add a migration to remove relativeLinkResolution usages (#47604)
As of Angular v15, the deprecated `relativeLinkResolution` config option of the Router is removed.  This migration cleans up (removes) the `relativeLinkResolution` fields from the Router config objects in applications code.

```ts
import { RouterModule } from '@angular/router';

RouterModule.forRoot([], {
  relativeLinkResolution: 'legacy',
  enableTracing: false,
});
```

```ts
import { RouterModule } from '@angular/router';

RouterModule.forRoot([], {
  // the `relativeLinkResolution` is removed
  enableTracing: false,
});
```

PR Close #47604
2022-10-07 10:28:42 -07:00
..
google3 feat(router): add a migration to remove relativeLinkResolution usages (#47604) 2022-10-07 10:28:42 -07:00
all-migrations.spec.ts build: update Angular tooling packages to 15.0.0-next.3 (#47584) 2022-09-30 10:53:04 -07:00
BUILD.bazel feat(router): add a migration to remove relativeLinkResolution usages (#47604) 2022-10-07 10:28:42 -07:00
entry_components_spec.ts build: update Angular tooling packages to 15.0.0-next.3 (#47584) 2022-09-30 10:53:04 -07:00
helpers.ts fix(migrations): do not incorrectly add todo for @Injectable or @Pipe (#37732) 2020-06-25 14:22:08 -07:00
path_match_type_spec.ts build: update Angular tooling packages to 15.0.0-next.3 (#47584) 2022-09-30 10:53:04 -07:00
project_tsconfig_paths_spec.ts build: update Angular tooling packages to 15.0.0-next.3 (#47584) 2022-09-30 10:53:04 -07:00
relative_link_resolution_spec.ts feat(router): add a migration to remove relativeLinkResolution usages (#47604) 2022-10-07 10:28:42 -07:00
router_link_with_href_spec.ts feat(router): migrate RouterLinkWithHref references to RouterLink (#47599) 2022-10-06 18:57:37 +00:00
typed_forms_spec.ts build: update Angular tooling packages to 15.0.0-next.3 (#47584) 2022-09-30 10:53:04 -07:00