diff --git a/package-lock.json b/package-lock.json index 7548f1cd..33aa2078 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2112,12 +2112,13 @@ "integrity": "sha512-glc9y00wgtwcDmp7GaE/0b0OnxpNJsVf3ael/An6Fe2Q51LLwN1er6sdomLRzz5h0+yMpiYLhWYF5R7HeqVd4g==" }, "meow": { - "version": "8.1.2", - "resolved": "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz", - "integrity": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==", + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz", + "integrity": "sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==", "requires": { "@types/minimist": "^1.2.0", "camelcase-keys": "^6.2.2", + "decamelize": "^1.2.0", "decamelize-keys": "^1.1.0", "hard-rejection": "^2.1.0", "minimist-options": "4.1.0", diff --git a/package.json b/package.json index 62cc10ab..8f571634 100644 --- a/package.json +++ b/package.json @@ -53,7 +53,7 @@ "eslint-plugin-prettier": "^3.1.4", "execa": "^5.0.0", "inquirer": "^7.3.3", - "meow": "^8.0.0", + "meow": "^9.0.0", "json5": "^2.1.3", "ncp": "^2.0.0", "prettier": "^2.1.2", diff --git a/src/cli.ts b/src/cli.ts index ef4d7284..d16ad903 100644 --- a/src/cli.ts +++ b/src/cli.ts @@ -80,7 +80,7 @@ const cli = meow({ help: {type: 'boolean'}, yes: {type: 'boolean', alias: 'y'}, no: {type: 'boolean', alias: 'n'}, - 'dry-run': {type: 'boolean'}, + dryRun: {type: 'boolean'}, yarn: {type: 'boolean'}, }, });