From 1e6d9205f93d18a40928018598511506ab1693b0 Mon Sep 17 00:00:00 2001 From: Jared Palmer Date: Thu, 27 Jan 2022 09:48:36 -0500 Subject: [PATCH] Fix @turbo/codemod help text --- turbo-codemod/src/git.ts | 2 +- turbo-codemod/src/index.ts | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/turbo-codemod/src/git.ts b/turbo-codemod/src/git.ts index c7bdc10bf0570..e77ac97cc8e26 100644 --- a/turbo-codemod/src/git.ts +++ b/turbo-codemod/src/git.ts @@ -17,7 +17,7 @@ export function checkGitStatus(force: boolean) { if (force) { console.log(`WARNING: ${errorMessage}. Forcibly continuing...`); } else { - console.log("Thank you for using turbo-migrate!"); + console.log("Thank you for using @turbo/codemod!"); console.log( chalk.yellow( "\nBut before we continue, please stash or commit your git changes." diff --git a/turbo-codemod/src/index.ts b/turbo-codemod/src/index.ts index fe27ce3094fda..cc370b949afad 100644 --- a/turbo-codemod/src/index.ts +++ b/turbo-codemod/src/index.ts @@ -12,7 +12,7 @@ import { runTransform } from "./runTransform"; const help = ` Usage: - $ npx turbo-migrate <...options> + $ npx @turbo/codemod <...options> If is not provided up front you will be prompted for it. @@ -26,11 +26,11 @@ const help = ` const TRANSFORMER_INQUIRER_CHOICES = [ { - name: "add-package-manager: Set the `packageManager` key in root package.json file", + name: "add-package-manager: Set the `packageManager` key in root `package.json` file", value: "add-package-manager", }, { - name: 'create-turbo-config: Creates the turbo.json file from an existing "turbo" key in package.json', + name: 'create-turbo-config: Create the `turbo.json` file from an existing "turbo" key in `package.json`', value: "create-turbo-config", }, ];