diff options
author | Mihai Bazon <mihai@bazon.net> | 2012-10-02 21:08:16 +0300 |
---|---|---|
committer | Mihai Bazon <mihai@bazon.net> | 2012-10-02 21:08:16 +0300 |
commit | 5c151f90b3bc14080072d41fd589dc74ff859fc6 (patch) | |
tree | c966a6b148ddfd49c0819208dc50fcb20977a690 | |
parent | 815abcfe1847c10fb257f5651561272743c1f754 (diff) | |
download | tracifyjs-5c151f90b3bc14080072d41fd589dc74ff859fc6.tar.gz tracifyjs-5c151f90b3bc14080072d41fd589dc74ff859fc6.zip |
fixed usage string
-rwxr-xr-x | bin/uglifyjs2 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/uglifyjs2 b/bin/uglifyjs2 index 5a34918d..cdecb848 100755 --- a/bin/uglifyjs2 +++ b/bin/uglifyjs2 @@ -27,7 +27,7 @@ For example -p 3 will drop 3 directories from file names and ensure they are rel .describe("r", "Reserved names to exclude from mangling.") .describe("c", "Enable compressor/pass compressor options. \ Pass options like -c hoist_vars=false,if_return=false. \ -Use -c with no argument if you want to disable the squeezer entirely.") +Use -c with no argument to use the default compression options.") .describe("d", "Global definitions") .describe("comments", "Preserve copyright comments in the output. \ @@ -51,6 +51,8 @@ because of dead code removal or cascading statements into sequences.") .alias("d", "define") .alias("r", "reserved") + .string("source-map") + .string("source-map-root") .string("b") .string("m") .string("c") |