From e54f922c14fc8bfb2940ac5c3cc7872ced3806c1 Mon Sep 17 00:00:00 2001 From: fatme Date: Thu, 11 Jul 2019 13:03:21 +0300 Subject: [PATCH 1/2] fix: add the link to blog post --- lib/controllers/migrate-controller.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/controllers/migrate-controller.ts b/lib/controllers/migrate-controller.ts index 129e4c172f..d5cbe76624 100644 --- a/lib/controllers/migrate-controller.ts +++ b/lib/controllers/migrate-controller.ts @@ -6,8 +6,7 @@ import { UpdateControllerBase } from "./update-controller-base"; import { fromWindowsRelativePathToUnix } from "../common/helpers"; export class MigrateController extends UpdateControllerBase implements IMigrateController { - // TODO: Update the links to blog post when it is available - private static COMMON_MIGRATE_MESSAGE = "not affect the codebase of the application and you might need to do additional changes manually – for more information, refer to the instructions in the following blog post: ."; + private static COMMON_MIGRATE_MESSAGE = "not affect the codebase of the application and you might need to do additional changes manually – for more information, refer to the instructions in the following blog post: https://www.nativescript.org/blog/nativescript-6.0-application-migration."; private static UNABLE_TO_MIGRATE_APP_ERROR = `The current application is not compatible with NativeScript CLI 6.0. Use the \`tns migrate\` command to migrate the app dependencies to a form compatible with NativeScript 6.0. Running this command will ${MigrateController.COMMON_MIGRATE_MESSAGE}`; From 5c418472b97f4bcd6fd1a3d14367fc42e156409e Mon Sep 17 00:00:00 2001 From: Fatme Date: Thu, 11 Jul 2019 13:12:16 +0300 Subject: [PATCH 2/2] chore: fix the message Co-Authored-By: Dimitar Tachev --- lib/controllers/migrate-controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/controllers/migrate-controller.ts b/lib/controllers/migrate-controller.ts index d5cbe76624..3a7ce43cb0 100644 --- a/lib/controllers/migrate-controller.ts +++ b/lib/controllers/migrate-controller.ts @@ -6,7 +6,7 @@ import { UpdateControllerBase } from "./update-controller-base"; import { fromWindowsRelativePathToUnix } from "../common/helpers"; export class MigrateController extends UpdateControllerBase implements IMigrateController { - private static COMMON_MIGRATE_MESSAGE = "not affect the codebase of the application and you might need to do additional changes manually – for more information, refer to the instructions in the following blog post: https://www.nativescript.org/blog/nativescript-6.0-application-migration."; + private static COMMON_MIGRATE_MESSAGE = "not affect the codebase of the application and you might need to do additional changes manually – for more information, refer to the instructions in the following blog post: https://www.nativescript.org/blog/nativescript-6.0-application-migration"; private static UNABLE_TO_MIGRATE_APP_ERROR = `The current application is not compatible with NativeScript CLI 6.0. Use the \`tns migrate\` command to migrate the app dependencies to a form compatible with NativeScript 6.0. Running this command will ${MigrateController.COMMON_MIGRATE_MESSAGE}`;