Fix long options

This commit is contained in:
なつき
2015-03-29 03:50:00 -07:00
parent 0262b4244c
commit db396da734

View File

@@ -88,13 +88,19 @@ You need to pass an argument to this option to specify the name that your module
.string("source-map-root") .string("source-map-root")
.string("source-map-url") .string("source-map-url")
.string("b") .string("b")
.string("beautify")
.string("m") .string("m")
.string("mangle")
.string("c") .string("c")
.string("compress")
.string("d") .string("d")
.string("define")
.string("e") .string("e")
.string("enclose")
.string("comments") .string("comments")
.string("wrap") .string("wrap")
.string("p") .string("p")
.string("prefix")
.string("name-cache") .string("name-cache")
.array("reserved-file") .array("reserved-file")
@@ -104,11 +110,13 @@ You need to pass an argument to this option to specify the name that your module
.boolean("export-all") .boolean("export-all")
.boolean("self") .boolean("self")
.boolean("v") .boolean("v")
.boolean("verbose")
.boolean("stats") .boolean("stats")
.boolean("acorn") .boolean("acorn")
.boolean("spidermonkey") .boolean("spidermonkey")
.boolean("lint") .boolean("lint")
.boolean("V") .boolean("V")
.boolean("version")
.boolean("noerr") .boolean("noerr")
.boolean("bare-returns") .boolean("bare-returns")
.boolean("keep-fnames") .boolean("keep-fnames")