Compare commits

...

4 Commits

Author SHA1 Message Date
Mihai Bazon
94205c3a37 v2.4.19 2015-03-29 14:02:37 +03:00
Mihai Bazon
2ada34b229 Merge pull request #660 from ntkme/fix-long-options
Fix long options
2015-03-29 14:01:21 +03:00
なつき
db396da734 Fix long options 2015-03-29 04:00:42 -07:00
Mihai Bazon
0262b4244c Disable testing with Node 0.8 2015-03-29 13:19:07 +03:00
3 changed files with 9 additions and 2 deletions

View File

@@ -1,6 +1,5 @@
language: node_js language: node_js
before_install: "npm install -g npm" before_install: "npm install -g npm"
node_js: node_js:
- "0.8"
- "0.10" - "0.10"
- "0.11" - "0.11"

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")

View File

@@ -3,7 +3,7 @@
"description": "JavaScript parser, mangler/compressor and beautifier toolkit", "description": "JavaScript parser, mangler/compressor and beautifier toolkit",
"homepage": "http://lisperator.net/uglifyjs", "homepage": "http://lisperator.net/uglifyjs",
"main": "tools/node.js", "main": "tools/node.js",
"version": "2.4.18", "version": "2.4.19",
"engines": { "node" : ">=0.4.0" }, "engines": { "node" : ">=0.4.0" },
"maintainers": [{ "maintainers": [{
"name": "Mihai Bazon", "name": "Mihai Bazon",