Skip to content

Commit

Permalink
feat(migrate): use Angular 14.1 (#5681)
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanWalker authored Jul 24, 2022
1 parent 68ce0d4 commit d5d4206
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/controllers/migrate-controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ export class MigrateController
{
packageName: "@nativescript/angular",
minVersion: "10.0.0",
desiredVersion: "^13.0.0",
desiredVersion: "^14.0.0",
async shouldMigrateAction(
dependency: IMigrationDependency,
projectData: IProjectData,
Expand Down Expand Up @@ -1293,7 +1293,7 @@ export class MigrateController

private async migrateNativeScriptAngular(): Promise<IMigrationDependency[]> {
const minVersion = "10.0.0";
const desiredVersion = "~13.2.0";
const desiredVersion = "~14.1.0";

const dependencies: IMigrationDependency[] = [
{
Expand Down Expand Up @@ -1376,11 +1376,11 @@ export class MigrateController
desiredVersion,
isDev: true,
},

// obsolete
{
packageName: "@angular-devkit/build-angular",
shouldRemove: true,
minVersion,
desiredVersion,
isDev: true,
},
];

Expand Down

0 comments on commit d5d4206

Please sign in to comment.