We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 627bea3 commit d8c17fbCopy full SHA for d8c17fb
src/commands/index.ts
@@ -23,6 +23,7 @@ const program = new Command()
23
.argument('[command]', 'Command that you want to run')
24
.argument('[args...]', 'Arguments for the command')
25
.option('-d, --debug', 'Enable debugging features', false)
26
+ .passThroughOptions(true)
27
.action(async (commandName?: string, args?: string[]) => {
28
const userConfig = getConfig();
29
const configCommands = userConfig.commands;
0 commit comments