Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-03-01 | Compress boolean constants after evaluation | Mihai Bazon | |
Close #137 | |||
2013-02-22 | Add license | Mihai Bazon | |
Close #131 | |||
2013-02-19 | Fix compressing `do {...} while (false)` | Mihai Bazon | |
It's not safe to transform it to {...} because the body might contain `break`. The solution could be more elaborate (detect if body contains `break`) but I don't think it's worth the trouble. Close #129 | |||
2013-02-14 | v2.2.5 | Mihai Bazon | |
2013-02-06 | Force space after literal regexp when used in "instanceof" or "in" | Mihai Bazon | |
Close #118 | |||
2013-02-06 | Give up evaluating (unary-prefix '-' 0) | Mihai Bazon | |
Close #117 ------ JS, WHY YOU SUCK SO BADLY? ;-( | |||
2013-02-06 | Fix parens for NaN | Mihai Bazon | |
Close #116 | |||
2013-02-06 | Fix parens for negative numbers | Mihai Bazon | |
Close #115 | |||
2013-02-06 | Fix parens for AST_New | Mihai Bazon | |
Close #114 | |||
2013-02-06 | Fix handling of constants | Mihai Bazon | |
Close #113 | |||
2013-02-05 | Ugly hack to print comments before return/throw statements | Mihai Bazon | |
Close #112 | |||
2013-02-03 | Merge pull request #111 from mattrobenolt/safer-sourcemap | Mihai Bazon | |
Wraps sourceMappingURL in a multiline comment. Fixes #108 | |||
2013-02-03 | Wraps sourceMappingURL in a multiline comment. Fixes #108 | Matt Robenolt | |
2013-02-01 | v2.2.4 | Mihai Bazon | |
2013-02-01 | Fix end token for Assign nodes | Mihai Bazon | |
2013-01-31 | Merge pull request #94 from paulmillr/patch-1 | Mihai Bazon | |
Add better fromstring docs. | |||
2013-01-24 | Merge pull request #106 from gibson042/105 | Mihai Bazon | |
Fix #105: property comparison to undefined is not always safe | |||
2013-01-23 | Fix #105: property comparison to undefined is not always safe | Richard Gibson | |
2013-01-20 | Add --source-map-url option | Mihai Bazon | |
Fix #100 Fix #47 | |||
2013-01-17 | [AST_Hole] the print function can be a no-op. | Mihai Bazon | |
2013-01-17 | Fix output for arrays containing undefined values. | David Glasser | |
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. | |||
2013-01-17 | Merge pull request #98 from ForbesLindesay/patch-1 | Mihai Bazon | |
Update installation instructions | |||
2013-01-17 | Handle String() with no arguments. | Mihai Bazon | |
Fix #91 | |||
2013-01-17 | Update installation instructions re #4 | Forbes Lindesay | |
2013-01-13 | Add better fromstring docs. | Paul Miller | |
2013-01-08 | Merge pull request #90 from jakearchibald/patch-1 | Mihai Bazon | |
Compressor options use underscores rather than hyphens | |||
2013-01-08 | Compressor options use underscores rather than hyphens | Jake Archibald | |
2013-01-04 | v2.2.3 | Mihai Bazon | |
2013-01-04 | Fix handling of labels in nested scopes | Mihai Bazon | |
2013-01-04 | Support `output`, `mangle` and `compress` options to `UglifyJS.minify`. | Mihai Bazon | |
Close #57 Close #86 Close #33 | |||
2013-01-03 | Merge pull request #87 from BenoitZugmeyer/master | Mihai Bazon | |
Add a --version option | |||
2013-01-03 | Set --version as a boolean #87 | Benoît Zugmeyer | |
2013-01-03 | --version option | Benoît Zugmeyer | |
2013-01-02 | Implement `-m sort=true` | Mihai Bazon | |
close #83 | |||
2012-12-22 | Accept string or number as name of an accessor. | Mihai Bazon | |
[not sure I'm happy about this fix] Reference mishoo/UglifyJS#478 | |||
2012-12-21 | Optimize new Array(1, 2, 3) → [1, 2, 3] | Mihai Bazon | |
Close #74 | |||
2012-12-21 | Fix output when semicolons is off. | Mihai Bazon | |
(need to force a semicolon for the empty body of an `if`) Close #72 | |||
2012-12-12 | Small cleanup | Mihai Bazon | |
2012-12-06 | v2.2.2 | Mihai Bazon | |
2012-12-06 | Add proper parens in "NoIn" expressions. | Mihai Bazon | |
fix #60. | |||
2012-12-05 | small improvement on merging assignments into hoisted vars | Mihai Bazon | |
2012-12-05 | When hoisting variables, try to merge in assignments that follow. | Mihai Bazon | |
2012-11-30 | Revert "Fixed reading from STDIN." | Mihai Bazon | |
It breaks usage like this: echo '...code...' | uglifyjs This reverts commit e48802ad291fae5a16f2d23cbd25a0c433cdbe48. | |||
2012-11-30 | Add test for issue #59 | Mihai Bazon | |
2012-11-30 | Don't messup compressor stack while optimizing Switch | Mihai Bazon | |
Fix #59 | |||
2012-11-29 | Merge pull request #58 from roxeteer/master | Mihai Bazon | |
Fixed reading from STDIN | |||
2012-11-29 | Fixed reading from STDIN. | Visa Kopu | |
2012-11-24 | fix #55 | Mihai Bazon | |
2012-11-23 | v2.2.1 | Mihai Bazon | |
2012-11-23 | fix for https://github.com/mishoo/UglifyJS/issues/474 | Mihai Bazon | |