Skip to content

Commit 2f2083e

Browse files
committed
1 parent dc28947 commit 2f2083e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/bin/citgm-all.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const yargs = commonArgs()
4545
.example('citgm-all --includeTags express', 'Only test express.')
4646
.example('citgm-all --excludeTags native', "Don't test native modules.");
4747

48-
const app = yargs.argv;
48+
const app = yargs.parse();
4949

5050
const log = logger({
5151
level: app.verbose,

lib/bin/citgm.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const yargs = commonArgs().usage('citgm [options] <module>').option('sha', {
1414
description: 'Install module from commit-sha, branch or tag'
1515
});
1616

17-
const app = yargs.argv;
17+
const app = yargs.parse();
1818

1919
mod = app._[0];
2020

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"winston": "^3.17.0",
5757
"xml-sanitizer": "^2.0.2",
5858
"xmlbuilder": "^15.1.1",
59-
"yargs": "^17.7.2",
59+
"yargs": "^18.0.0",
6060
"yarn": "^1.22.22"
6161
},
6262
"devDependencies": {

0 commit comments

Comments
 (0)