We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1435554 commit c55130cCopy full SHA for c55130c
1 file changed
src/parse-cli-args.js
@@ -5,7 +5,10 @@ import commands from './commands';
5
6
const help = {
7
options: null,
8
- execute: yargs.showHelp
+ execute() {
9
+ yargs.showHelp();
10
+ return Promise.resolve(1);
11
+ }
12
};
13
14
export default function parseCliArgs(argv) {
0 commit comments