假设我们有这个:
vorpal.command('find [sumanOptions] [folder]')
.description('find test files to run')
.action(function (args: Array<string>, cb: Function) {
// args => {sumanOptions: 'a b c'}
});
如何为 sumanOptions 传递命令字符串(“子命令”)?像这样的东西:
vorpal> find "a b c" myfolder
这样在动作回调的 args 中,看起来像:
// args => {sumanOptions: 'a b c'}
这可能吗?还是这个问题是我在问题跟踪器中看到的“子命令”问题?我希望能够做到这一点,到目前为止,还无法弄清楚如何做到这一点。