Removing two aliases that were already used

This commit is contained in:
Dan Crews 2015-10-19 11:02:07 -06:00
parent 654782763b
commit dc4db086c7
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
module.exports = function(optimist) {
optimist
.boolean("help").alias("help", "h").alias("help", "?").describe("help")
.string("config").alias("config", "c").describe("config")
.string("config").describe("config")
.string("context").describe("context")
.string("entry").describe("entry")
.string("module-bind").describe("module-bind")
@ -27,7 +27,7 @@ module.exports = function(optimist) {
.boolean("watch-stdin").alias("watch-stdin", "stdin").describe("watch which closes when stdin ends")
.describe("watch-aggregate-timeout")
.describe("watch-poll")
.boolean("hot").alias("hot", "h").describe("hot")
.boolean("hot").describe("hot")
.boolean("debug").describe("debug")
.string("devtool").describe("devtool")
.boolean("progress").describe("progress")