aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2013-02-01Fix end token for Assign nodesMihai Bazon
2013-01-31Merge pull request #94 from paulmillr/patch-1...Add better fromstring docs.Mihai Bazon
2013-01-24Merge pull request #106 from gibson042/105...Fix #105: property comparison to undefined is not always safeMihai Bazon
2013-01-23Fix #105: property comparison to undefined is not always safeRichard Gibson
2013-01-20Add --source-map-url option...Fix #100 Fix #47 Mihai Bazon
2013-01-17[AST_Hole] the print function can be a no-op.Mihai Bazon
2013-01-17Fix output for arrays containing undefined values....1b6bcca7 was a first attempt at this. That commit made Uglify stop replacing holes with undefined, but instead it started replacing undefined with holes. This is slightly problematic, because there is a difference between a hole and an undefined value. More problematically, it changed [1,undefined] to [1,] which generally doesn't even parse as a hole (just as a trailing comma), so it didn't even preserve the length of the array! Instead, parse holes as their own special AST node which prints invisibly. David Glasser
2013-01-17Merge pull request #98 from ForbesLindesay/patch-1...Update installation instructionsMihai Bazon
2013-01-17Handle String() with no arguments....Fix #91 Mihai Bazon
2013-01-17Update installation instructions re #4Forbes Lindesay
2013-01-13Add better fromstring docs.Paul Miller
2013-01-08Merge pull request #90 from jakearchibald/patch-1...Compressor options use underscores rather than hyphensMihai Bazon
2013-01-08Compressor options use underscores rather than hyphensJake Archibald
2013-01-04v2.2.3Mihai Bazon
2013-01-04Fix handling of labels in nested scopesMihai Bazon
2013-01-04Support `output`, `mangle` and `compress` options to `UglifyJS.minify`....Close #57 Close #86 Close #33 Mihai Bazon
2013-01-03Merge pull request #87 from BenoitZugmeyer/master...Add a --version optionMihai Bazon
2013-01-03Set --version as a boolean #87Benoît Zugmeyer
2013-01-03--version optionBenoît Zugmeyer
2013-01-02Implement `-m sort=true`...close #83 Mihai Bazon
2012-12-22Accept string or number as name of an accessor....[not sure I'm happy about this fix] Reference mishoo/UglifyJS#478 Mihai Bazon
2012-12-21Optimize new Array(1, 2, 3) → [1, 2, 3]...Close #74 Mihai Bazon
2012-12-21Fix output when semicolons is off....(need to force a semicolon for the empty body of an `if`) Close #72 Mihai Bazon
2012-12-12Small cleanupMihai Bazon
2012-12-06v2.2.2Mihai Bazon
2012-12-06Add proper parens in "NoIn" expressions....fix #60. Mihai Bazon
2012-12-05small improvement on merging assignments into hoisted varsMihai Bazon
2012-12-05When hoisting variables, try to merge in assignments that follow.Mihai Bazon
2012-11-30Revert "Fixed reading from STDIN."...It breaks usage like this: echo '...code...' | uglifyjs This reverts commit e48802ad291fae5a16f2d23cbd25a0c433cdbe48. Mihai Bazon
2012-11-30Add test for issue #59Mihai Bazon
2012-11-30Don't messup compressor stack while optimizing Switch...Fix #59 Mihai Bazon
2012-11-29Merge pull request #58 from roxeteer/master...Fixed reading from STDINMihai Bazon
2012-11-29Fixed reading from STDIN.Visa Kopu
2012-11-24fix #55Mihai Bazon
2012-11-23v2.2.1Mihai Bazon
2012-11-23fix for https://github.com/mishoo/UglifyJS/issues/474Mihai Bazon
2012-11-21rename the npm package to "uglify-js" and cli tool to "uglifyjs"Mihai Bazon
2012-11-18fix #51Mihai Bazon
2012-11-17retain (1,eval) as is when it's the expression of an AST_Call...otherwise we change the meaning of eval from global to lexical. Mihai Bazon
2012-11-14Add support for somewhat preserving line numbers....Usage: uglifyjs2 -b "beautify=0,preserve_line=1" /path/to/js ref #46 Richard van Velzen
2012-11-14better solution for the last test in constant switch foldingMihai Bazon
2012-11-14optimize constant switch blocks...ref. mishoo/UglifyJS#441 Mihai Bazon
2012-11-13Merge branch 'optimize_concat' of https://github.com/rvanvelzen/UglifyJS2 int...Mihai Bazon
2012-11-13don't change order in binary expressions if both operands have side effectsMihai Bazon
2012-11-12Add simple optimization for empty-string concats....ref. #43 Richard van Velzen
2012-11-12v2.1.11Mihai Bazon
2012-11-12fix invalid AST produced by dropping unused variable...close #44 Mihai Bazon
2012-11-12Merge pull request #41 from Skalman/toString-patch...Convert x.toString() to ""+x instead of x+""Mihai Bazon
2012-11-11convert x.toString() to ""+x instead of x+""...In some places this can save one byte in whitespace, e.g. after return. Example: function f(arg) { // return""+arg - no space between return and "" return arg.toString(); } Dan Wolff
2012-11-09declare dependency versions...close #40 Mihai Bazon