Skip to content

Commit

Permalink
feat: migrate 8.8 and associated depedencies (#5807)
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanWalker authored Jul 11, 2024
1 parent 2f2d1e0 commit 9e9773f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/controllers/migrate-controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export class MigrateController
{
packageName: "@nativescript/core",
minVersion: "6.5.0",
desiredVersion: "~8.7.0",
desiredVersion: "~8.8.0",
shouldAddIfMissing: true,
},
{
Expand All @@ -131,7 +131,7 @@ export class MigrateController
{
packageName: "@nativescript/types",
minVersion: "7.0.0",
desiredVersion: "~8.7.0",
desiredVersion: "~8.8.0",
isDev: true,
},
{
Expand Down Expand Up @@ -190,7 +190,7 @@ export class MigrateController
{
packageName: "@nativescript/angular",
minVersion: "10.0.0",
desiredVersion: "^17.0.0",
desiredVersion: "^18.0.0",
async shouldMigrateAction(
dependency: IMigrationDependency,
projectData: IProjectData,
Expand Down Expand Up @@ -295,13 +295,13 @@ export class MigrateController
{
packageName: "@nativescript/ios",
minVersion: "6.5.3",
desiredVersion: "~8.7.0",
desiredVersion: "~8.8.0",
isDev: true,
},
{
packageName: "@nativescript/android",
minVersion: "7.0.0",
desiredVersion: "~8.7.0",
desiredVersion: "~8.8.0",
isDev: true,
},
];
Expand Down Expand Up @@ -1310,7 +1310,7 @@ export class MigrateController

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

const dependencies: IMigrationDependency[] = [
{
Expand Down

0 comments on commit 9e9773f

Please sign in to comment.