1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-04 02:09:32 +02:00

Merge pull request #591 from aiwb/update-yargs

Update yargs
This commit is contained in:
Simo Kinnunen 2017-05-04 19:04:36 +09:00 committed by GitHub
commit 161c6ee01a
2 changed files with 2 additions and 2 deletions

View file

@ -30,7 +30,7 @@ var _argv = yargs.usage('Usage: $0 <command> [options]')
.command(require('./storage-temp')) .command(require('./storage-temp'))
.command(require('./triproxy')) .command(require('./triproxy'))
.command(require('./websocket')) .command(require('./websocket'))
.demand(1, 'Must provide a valid command.') .demandCommand(1, 'Must provide a valid command.')
.help('h', 'Show help.') .help('h', 'Show help.')
.alias('h', 'help') .alias('h', 'help')
.version('V', 'Show version.', function() { .version('V', 'Show version.', function() {

View file

@ -92,7 +92,7 @@
"utf-8-validate": "^1.2.1", "utf-8-validate": "^1.2.1",
"uuid": "^3.0.0", "uuid": "^3.0.0",
"ws": "^1.0.1", "ws": "^1.0.1",
"yargs": "^6.5.0", "yargs": "^6.6.0",
"zmq": "^2.14.0" "zmq": "^2.14.0"
}, },
"devDependencies": { "devDependencies": {