We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4135d71 commit d61f4aaCopy full SHA for d61f4aa
modules/codemod/index.js
@@ -74,6 +74,13 @@ const {
74
describe: chalk.gray('The path to execute the transform in (recursively).'),
75
});
76
})
77
+ .command('v12 [path]', chalk.gray('Canvas Kit v11 > v12 upgrade transform'), yargs => {
78
+ yargs.positional('path', {
79
+ type: 'string',
80
+ default: '.',
81
+ describe: chalk.gray('The path to execute the transform in (recursively).'),
82
+ });
83
+ })
84
.demandCommand(1, chalk.red.bold('You must provide a transform to apply.'))
85
.strictCommands()
86
.fail((msg, err, yargs) => {
0 commit comments