这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion turbo-codemod/src/git.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down
6 changes: 3 additions & 3 deletions turbo-codemod/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { runTransform } from "./runTransform";

const help = `
Usage:
$ npx turbo-migrate <transform> <path> <...options>
$ npx @turbo/codemod <transform> <path> <...options>

If <dir> is not provided up front you will be prompted for it.

Expand All @@ -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",
},
];
Expand Down