From db396da7342accfd6af3d8b1a61315e747d649cc Mon Sep 17 00:00:00 2001 From: =?utf8?q?=E3=81=AA=E3=81=A4=E3=81=8D?= Date: Sun, 29 Mar 2015 03:50:00 -0700 Subject: [PATCH] Fix long options --- bin/uglifyjs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/bin/uglifyjs b/bin/uglifyjs index 63756665..9b335b74 100755 --- a/bin/uglifyjs +++ b/bin/uglifyjs @@ -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-url") .string("b") + .string("beautify") .string("m") + .string("mangle") .string("c") + .string("compress") .string("d") + .string("define") .string("e") + .string("enclose") .string("comments") .string("wrap") .string("p") + .string("prefix") .string("name-cache") .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("self") .boolean("v") + .boolean("verbose") .boolean("stats") .boolean("acorn") .boolean("spidermonkey") .boolean("lint") .boolean("V") + .boolean("version") .boolean("noerr") .boolean("bare-returns") .boolean("keep-fnames") -- 2.34.1