aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-06-09Change --mangle-regex to accept a full regexJoao Carlos
2015-06-09Show descriptive error when --mangle-regex is invalidJoao Carlos
2015-06-09Add --mangle-regex optionJoao Carlos
2015-05-20v2.4.23Mihai Bazon
2015-05-20Treat \uFEFF as whitespace.Mihai Bazon
Fix #714
2015-05-18v2.4.22Mihai Bazon
2015-05-18Fix compressing conditionalsMihai Bazon
Only transform foo() ? EXP(x) : EXP(y) into EXP(foo() ? x : y) if EXP has no side effects. Fix #710
2015-05-13fix again reserved propsMihai Bazon
2015-05-07Make reserved names take priority over the name cacheMihai Bazon
2015-05-05Only drop the BOM when it's the first character.Mihai Bazon
Close #704
2015-05-04v2.4.21Mihai Bazon
2015-05-04Fix blank lines in the output.Mihai Bazon
The issue was more obvious when max_line_len has a small value, rather than the default 32K characters. A blank line showed up after most statements.
2015-05-04Remove deprecated calls to utils.print/utils.errorMihai Bazon
Close #542, #641, #647
2015-05-04Avoid spurious brackets when dropping unused varsMihai Bazon
Fix #702
2015-04-23Fix parsing strings with literal DOS newlinesMihai Bazon
(should not set newline_before) Fix #693
2015-04-22If name_cache is specified, do rename cached propertiesMihai Bazon
(even if --mangle-props is not there)
2015-04-17Fix testsMihai Bazon
2015-04-17Drop NaN -> 0/0 transformation.Mihai Bazon
Fix #687
2015-04-14Added expect_exact for testing the OutputStreamFábio Santos
This works almost exactly like `expect`, except that you pass a literal string of which the result is compared with the generated output.
2015-04-14Normalize package.json.XhmikosR
* Specify the files to install in package.json * Add missing properties * Follow `npm init`'s scheme
2015-04-14Test on latest `node` and `io.js`Jordan Harband
Per https://github.com/mishoo/UglifyJS2/commit/0262b4244c13b3ef148bf096874847aea84b93e5 - if you're going to stop testing on 0.8, you should be testing on 0.12. Also allow failures on unstable nodes and "older than two latest" `io.js` versions, and enable "sudo: false" which makes tests run faster.
2015-04-13v2.4.20Mihai Bazon
2015-04-13Fix compression of conditionalsMihai Bazon
Don't move the condition on the right side of an assignment when the left side may have side effects. Fix #677
2015-04-10Use the `before` visitor in mangle propsMihai Bazon
(works around a bug in our tree walker which, while cloning nodes, breaks references between labeled statements and break/continue labels)
2015-04-05More fixes for the breaking changes in yargsMihai Bazon
Close #670
2015-04-04Merge pull request #669 from galvanix/documentation-inSourceMapMihai Bazon
Document passing source maps directly to minify() using inSourceMap
2015-04-03Document passing source maps directly to minify() using inSourceMapDavid Caldwell
2015-03-29v2.4.19Mihai Bazon
2015-03-29Merge pull request #660 from ntkme/fix-long-optionsMihai Bazon
Fix long options
2015-03-29Fix long optionsなつき
2015-03-29Disable testing with Node 0.8Mihai Bazon
2015-03-29v2.4.18Mihai Bazon
2015-03-29Update READMEMihai Bazon
2015-03-29Merge branch 'propmangle'Mihai Bazon
2015-03-29Add tool to extract property namesMihai Bazon
2015-03-24Merge in more DOM properties.Mihai Bazon
2015-03-23Fix compressing `![foo()];` as a statementMihai Bazon
need to check whether the literal has any side effects before replacing that with `false`.
2015-03-22[sequencesize] Actually even better:Mihai Bazon
do create the sequence even if the stat list is bigger than 2000 statements, but limit the sequence itself to 2000 expressions. Ref #414
2015-03-22Avoid sequencesize for more than 2000 statements.Mihai Bazon
It hardly saves any bytes for a sequence so long, and it risks blowing the stack with the recursive Seq functions. Ref #414
2015-03-22Add start/end nodes for NaN/Infinity transformationsMihai Bazon
2015-03-22Export readDefaultReservedFileMihai Bazon
2015-03-20Keep unused function arguments by defaultMihai Bazon
Discarding unused function arguments affects function.length, which can lead to some hard to debug issues. This optimization is now done only in "unsafe mode". Fix #121
2015-03-19Don't use Object.createMihai Bazon
2015-03-19tools/props.html: output complete JSONMihai Bazon
2015-03-18Add --reserve-domprops along with a default exclusion list in ↵Mihai Bazon
tools/domprops.json
2015-03-18Support multiple --reserved-file argsMihai Bazon
2015-03-18Bump yargs version (for .array arguments)Mihai Bazon
2015-03-18Fix parsing for U+2028 / U+2029Mihai Bazon
(they should be treated as whitespace)
2015-03-18Fix parsing for U+2028 / U+2029Mihai Bazon
(they should be treated as whitespace)
2015-03-17tools/props.html: use try/catch in a few more placesMihai Bazon