diff --git a/packages/cli/src/commands/index.ts b/packages/cli/src/commands/index.ts index f1119053ec..58892d4835 100644 --- a/packages/cli/src/commands/index.ts +++ b/packages/cli/src/commands/index.ts @@ -247,30 +247,6 @@ export function registerCommands(program: Command) { .description( 'Open up an interactive guide to creating new things in your app', ) - .option( - '--select ', - 'Select the thing you want to be creating upfront', - ) - .option( - '--option =', - 'Pre-fill options for the creation process', - (opt, arr: string[]) => [...arr, opt], - [], - ) - .option('--scope ', 'The scope to use for new packages') - .option( - '--npm-registry ', - 'The package registry to use for new packages', - ) - .option( - '--baseVersion ', - 'The version to use for any new packages (default: 0.1.0)', - ) - .option( - '--license ', - 'The license to use for any new packages (default: Apache-2.0)', - ) - .option('--no-private', 'Do not mark new packages as private') .action(lazy(() => import('./new/new'), 'default')); registerConfigCommands(program);