aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorMichał Gołębiowski <m.goleb@gmail.com>2013-03-25 16:11:07 +0100
committerMichał Gołębiowski <m.goleb@gmail.com>2013-03-25 17:03:21 +0100
commit75f0bbe6e8a243571860626631a820b0787b9990 (patch)
tree9f26ef1f774fe09bf849d38753d2cd0e88312f5b /bin
parent478bf4dbdde27f1110e36a56a2f9be6c11847b68 (diff)
downloadtracifyjs-75f0bbe6e8a243571860626631a820b0787b9990.tar.gz
tracifyjs-75f0bbe6e8a243571860626631a820b0787b9990.zip
renamed --screw-ie to --screw-ie8, documented it in README.md, indicated it doesn't break IE9+
Diffstat (limited to 'bin')
-rwxr-xr-xbin/uglifyjs12
1 files changed, 6 insertions, 6 deletions
diff --git a/bin/uglifyjs b/bin/uglifyjs
index b8fad946..896966d5 100755
--- a/bin/uglifyjs
+++ b/bin/uglifyjs
@@ -21,7 +21,7 @@ mangling you need to use `-c` and `-m`.\
.describe("source-map-root", "The path to the original source to be included in the source map.")
.describe("source-map-url", "The path to the source map to be added in //@ sourceMappingURL. Defaults to the value passed with --source-map.")
.describe("in-source-map", "Input source map, useful if you're compressing JS that was generated from some other original code.")
- .describe("screw-ie", "Pass this flag if you don't care about full compliance with Internet Explorer quirks (by default UglifyJS will try to be IE-proof).")
+ .describe("screw-ie8", "Pass this flag if you don't care about full compliance with Internet Explorer 6-8 quirks (by default UglifyJS will try to be IE-proof).")
.describe("p", "Skip prefix for original filenames that appear in source maps. \
For example -p 3 will drop 3 directories from file names and ensure they are relative paths.")
.describe("o", "Output file (default STDOUT).")
@@ -75,7 +75,7 @@ You need to pass an argument to this option to specify the name that your module
.string("e")
.string("comments")
.string("wrap")
- .boolean("screw-ie")
+ .boolean("screw-ie8")
.boolean("export-all")
.boolean("self")
.boolean("v")
@@ -125,8 +125,8 @@ if (MANGLE && ARGS.r) {
MANGLE.except = ARGS.r.replace(/^\s+|\s+$/g).split(/\s*,+\s*/);
}
-if (MANGLE && ARGS.screw_ie) {
- MANGLE.screw_ie = true;
+if (MANGLE && ARGS.screw_ie8) {
+ MANGLE.screw_ie8 = true;
}
var OUTPUT_OPTIONS = {
@@ -265,7 +265,7 @@ var SCOPE_IS_NEEDED = COMPRESS || MANGLE || ARGS.lint;
if (SCOPE_IS_NEEDED) {
time_it("scope", function(){
- TOPLEVEL.figure_out_scope({ screw_ie: ARGS.screw_ie });
+ TOPLEVEL.figure_out_scope({ screw_ie8: ARGS.screw_ie8 });
if (ARGS.lint) {
TOPLEVEL.scope_warnings();
}
@@ -280,7 +280,7 @@ if (COMPRESS) {
if (SCOPE_IS_NEEDED) {
time_it("scope", function(){
- TOPLEVEL.figure_out_scope({ screw_ie: ARGS.screw_ie });
+ TOPLEVEL.figure_out_scope({ screw_ie8: ARGS.screw_ie8 });
if (MANGLE) {
TOPLEVEL.compute_char_frequency(MANGLE);
}