-
Notifications
You must be signed in to change notification settings - Fork 11.9k
Closed
Milestone
Description
🐞 Bug report
Command (mark with an x)
- [ ] new
- [ ] build
- [ ] serve
- [ ] test
- [ ] e2e
- [ ] generate
- [ ] add
- [X] update
- [ ] lint
- [ ] xi18n
- [ ] run
- [ ] config
- [ ] help
- [ ] version
- [ ] doc
Is this a regression?
No, this behavior did not exist prior to 8.x
Description
ran ng update @angular/cli @angular/core
loadChildren import statements were not updated to new syntax
🔬 Minimal Reproduction
I haven't dug into the migration code, but I have my routes in a app-routing.module.ts file:
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
const routes: Routes = [
{
path: '',
pathMatch: 'full',
loadChildren: './home/home.module#HomeModule',
data: { depth: 0 },
},
];
@NgModule({
imports: [RouterModule.forRoot(routes)],
exports: [RouterModule],
})
export class AppRoutingModule {}🔥 Exception or Error
No error, just old import pattern instead of new.
🌍 Your Environment
I was on Angular 7.2.15 and this was part of the update process to 8.0.0.
Anything else relevant?
I'm wondering if the migration code is targeting a certain file or something else that would have excluded this file from being updated to the new import pattern.
Here's the last bit from the ng update command:
** Executing migrations for package '@angular/core' **
------ Static Query Migration ------
With Angular version 8, developers need to
explicitly specify the timing of ViewChild and
ContentChild queries. Read more about this here:
https://v8.angular.io/guide/static-query-migration
------------------------------------------------
UPDATE src/app/search/search.component.ts (2049 bytes)benbr-personal, beyondsanity, marianocodes, Splaktar, chriszrc and 6 more