upgraded command-line-args

This commit is contained in:
Lloyd Brookes
2015-08-14 09:26:31 +01:00
parent 73909c8800
commit 8c64de79e7
2 changed files with 4 additions and 5 deletions

View File

@ -20,11 +20,10 @@ var url = require("url");
/* specify the command line arg definitions and usage forms */
var cli = cliArgs(cliOptions);
var usage = cli.getUsage({
title: "[bold]{local-web-server}",
title: "local-web-server",
description: "Lightweight static web server, zero configuration.",
footer: "Project home: [underline]{https://github.com/75lb/local-web-server}",
usage: {
title: "[bold]{Usage}",
forms: [
"$ ws <server options>",
"$ ws --config",
@ -32,8 +31,8 @@ var usage = cli.getUsage({
]
},
groups: {
server: "[bold]{Server}",
misc: "[bold]{Misc}"
server: "Server",
misc: "Misc"
}
});

View File

@ -15,7 +15,7 @@
"repository": "https://github.com/75lb/local-web-server",
"author": "Lloyd Brookes",
"dependencies": {
"command-line-args": "^1.1.0-0",
"command-line-args": "^1.0.0",
"compression": "^1.0.2",
"config-master": "^1",
"connect": "^3.0.0",