diff --git a/bin/ws.js b/bin/ws.js index 1829aa4..83a5a46 100755 --- a/bin/ws.js +++ b/bin/ws.js @@ -3,7 +3,7 @@ var dope = require("console-dope"), connect = require("connect"), http = require("http"), - parseArgv = require("command-line-args"), + cliArgs = require("command-line-args"), w = require("wodge"), path = require("path"), loadConfig = require("config-master"), @@ -37,14 +37,14 @@ var storedConfig = loadConfig( /* override stored config with values parsed from command line */ try { - var argv = parseArgv([ + var argv = cliArgs([ { name: "port", alias: "p", type: Number, defaultOption: true, value: 8000 }, { name: "log-format", alias: "f", type: String }, { name: "help", alias: "h", type: Boolean }, { name: "directory", alias: "d", type: String, value: process.cwd() }, { name: "config", type: Boolean }, { name: "compress", alias: "c", type: Boolean } - ]); + ]).parse(); } catch(err){ halt(err.message); } diff --git a/package.json b/package.json index 38d4753..bab3f5e 100644 --- a/package.json +++ b/package.json @@ -14,14 +14,14 @@ "repository": "https://github.com/75lb/local-web-server", "author": "Lloyd Brookes", "dependencies": { - "command-line-args": "~0.0.2", + "command-line-args": "^0.2.0", "compression": "^1.0.2", "config-master": "~0.1.0", "connect": "^3.0.0", - "console-dope": "~0.3.0", + "console-dope": "^0.3.0", "morgan": "^1.0.0", "serve-index": "^1.0.2", "serve-static": "^1.1.0", - "wodge": "~0.6.0" + "wodge": "^0.7.0" } }