aboutsummaryrefslogtreecommitdiff
path: root/README.md
AgeCommit message (Expand)Author
2016-06-19Document the except option to mangle...Added documentation for the `except` option to the `mangle` option in the API reference.Asia
2016-06-19Respect quote style in object literals...The option added in fbbaa42ee55a7f753f7cab9b1a905ccf73cf26d5 wasn't being respected inside object literals, so quoted property names would still be stripped out with this option. This is mostly a corner-case, but useful when the output is passed to something like the Closure compiler, where quoted property names can be used to prevent mangling. Shrey Banga
2016-06-19Don't mix strings with directives in output... * Don't interpret strings with escaped content as directive * Don't interpret strings after empty statement as directive * Adapt output to prevent strings being represent as directive * Introduce UGLIFY_DEBUG to allow internal testing like EXPECT_DIRECTIVE Anthony Van de Gejuchte
2016-06-15Fix test262 failures related to <, <=, in and instanceof...Fixed-by: @kzc Anthony Van de Gejuchte
2016-04-19Add `passes` compress option. Fix duplicate compress warnings.kzc
2016-03-27added documentation on conditional compilation using APISebastien Daniel
2016-02-27#877 Ignore mangle sort optionkzc
2016-02-11Merge pull request #948 from kzc/collapse_vars_doc...collapse_vars: document the compress option in READMERichard van Velzen
2016-02-08Create and map `bare-returns` into new `parse` property nameMartii
2016-01-28collapse_vars: small change to READMEkzc
2016-01-28collapse_vars: document option in READMEkzc
2016-01-27Add mangleProperties documentation to README...Add additional documentation to mangleProperties.Bryan Rayner
2016-01-26Added a mangle properties optionJeremy Marzka
2016-01-19Update README for /** @const */Samuel Reed
2015-11-27Update README URLs based on HTTP redirectsReadmeCritic
2015-11-14Fix docs for keep_fargs...Compression options `keep_fargs` and `unsafe` were decoupled in v.2.5.0 (commit 5fd1245), so document actual keep_fargs default.plievone
2015-10-13add `--pure-funcs` option...it has the same effect as specifying `pure_funcs` in `--compressor` option, however it's much easier to use instead of: --compressor 'pure_func=["Math.floor","debug","console.logTime"]' it's now possible: --compressor --pure-funcs Math.floor debug console.logTime fixes #684 Damian Krzeminski
2015-08-07Merge pull request #729 from DrewML/keep_fnames_docs...Add keep_fnames compressor option to README.mdRichard van Velzen
2015-06-09Change --mangle-regex to accept a full regexJoao Carlos
2015-06-09Add --mangle-regex optionJoao Carlos
2015-06-02Add keep_fnames compressor option to README.mdAndrew Levine
2015-04-03Document passing source maps directly to minify() using inSourceMapDavid Caldwell
2015-03-29Update READMEMihai Bazon
2015-03-20Keep unused function arguments by default...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 Mihai Bazon
2015-01-27Add option to preserve/enforce string quote style...`-q 0` (default) use single or double quotes such as to minimize the number of bytes (prefers double quotes when both will do); this is the previous behavior. `-q 1` -- always use single quotes `-q 2` -- always use double quotes `-q 3` or just `-q` -- always use the original quotes. Related codegen option: `quote_style`. Close #495 Close #460 Some `yargs` guru please tell me why `uglifyjs --help` doesn't display the help string for `-q` / `--quotes`, and why it doesn't output the expected argument types anymore, like good old `optimist` did. Mihai Bazon
2015-01-07Document `--` for usage in CLI class...Close #518 Richard van Velzen
2015-01-04Update README.md...otions => optionsAustin Brown
2015-01-04Use svg instead of png to get better image qualityPeter Dave Hello
2014-09-28Document `keep_fargs`. Close #557Mihai Bazon
2014-08-04Added example for usage with SpiderMonkey AST.Ingvar Stepanyan
2014-02-06fix readme typo (when -> with)Vladimir Agafonkin
2014-01-26Merge branch 'sourcesContent' of https://github.com/arty-name/UglifyJS2 into ...Mihai Bazon
2014-01-17Fix exampleMihai Bazon
2014-01-09Added support for sourcesContent property of source mapArtemy Tregubenko
2013-12-10Add `drop_console` option to the compressorMihai Bazon
2013-10-30[README] Fix #278Mihai Bazon
2013-10-29Add "preamble" output option...Close #335 Mihai Bazon
2013-10-04Rename clean_getters to pure_getters; add pure_funcs.Mihai Bazon
2013-10-02add `clean_getters` compressor option (default `false`)...allows one to specify if `foo.bar` is considered to have side effects. Mihai Bazon
2013-08-22Remove --ie-proof from the readme....Fix #276 Mihai Bazon
2013-08-20Move support for `negate_iife` in the compressor, rather than code generator...(the code generator doesn't maintain enough context to know whether the return value is important or discarded) Fixes #272 Mihai Bazon
2013-08-08fix usageMihai Bazon
2013-08-07Support `-p relative`. Fix #256Mihai Bazon
2013-05-22Add `negate_iife` option to the code generator....See discussion in a9511dfbe5c0d96d8cacb87582aa9a19737bbb98 Mihai Bazon
2013-05-08Add Travis build badge to READMENick Schonning
2013-05-02Fix typo in bin and readmeKim Joar Bekkelund
2013-05-01Add README syntax highlightingUli Köhler
2013-04-20unbalanced parentheses in readmeMichael Ficarra
2013-03-25renamed --screw-ie to --screw-ie8, documented it in README.md, indicated it d...Michał Gołębiowski
2013-03-13Support mangling toplevel names...Close #127 Mihai Bazon