mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 13:11:20 +08:00
refactor: leverage arg-parser lib to capture unrecognized args
This commit is contained in:
parent
59459ece1e
commit
9f173d6a70
@ -89,12 +89,11 @@ program
|
||||
})
|
||||
);
|
||||
|
||||
program.command('*', { noHelp: true }).action(() => {
|
||||
const [, , invalidCmd] = process.argv;
|
||||
logger.error(' Invalid command: %s.\n See --help for a list of available commands.', invalidCmd);
|
||||
program.on('command:*', (args) => {
|
||||
logger.error(' Invalid command: %s.\n See --help for a list of available commands.', args[0]);
|
||||
// eslint-disable-next-line
|
||||
const availableCommands = program.commands.map((cmd) => cmd._name);
|
||||
const suggestion = availableCommands.find((cmd) => leven(cmd, invalidCmd) < 3);
|
||||
const suggestion = availableCommands.find((cmd) => leven(cmd, args[0]) < 3);
|
||||
if (suggestion) {
|
||||
logger.log(`\n Did you mean ${suggestion}?`);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user