Merge pull request #12799 from storybookjs/refactor/leverage-arg-parser

CLI: Clean up handling of unknown subcommands
This commit is contained in:
Michael Shilman 2020-10-19 00:14:18 +08:00 committed by GitHub
commit 68f6e2c9b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -89,8 +89,7 @@ program
})
);
program.command('*', { noHelp: true }).action(() => {
const [, , invalidCmd] = process.argv;
program.on('command:*', ([invalidCmd]) => {
logger.error(' Invalid command: %s.\n See --help for a list of available commands.', invalidCmd);
// eslint-disable-next-line
const availableCommands = program.commands.map((cmd) => cmd._name);