Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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