UglifyJS.git
2012-10-24 Mihai Bazonfix for `if (...) return; else return ...;`
2012-10-22 Mihai Bazonmore sequence optimizations (lift some sequences above...
2012-10-22 Mihai Bazonv2.1.2
2012-10-20 Mihai BazonMerge branch 'master' of github.com:mishoo/UglifyJS2
2012-10-20 Mihai Bazonalternate hack to disable deprecation warning
2012-10-19 Mihai BazonMerge pull request #19 from SevInf/master
2012-10-19 Mihai Bazonminor fix for dropping unused definitions.
2012-10-19 Sergej TatarincevAdd sourceRoot option to minify
2012-10-18 Mihai Bazonadd fromString argument to `UglifyJS.minify` (allows...
2012-10-18 Mihai Bazonmore optimizations for some break/continue cases
2012-10-18 Mihai Bazonv2.1.1
2012-10-18 Mihai Bazonfix `--comments` (close #16)
2012-10-17 Mihai Bazonv2.1.0
2012-10-17 Mihai Bazonadded note about API docs and online demo
2012-10-17 Mihai Bazonmore small optimizations
2012-10-17 Mihai Bazondefine aborts on AST_If: true if both branches abort
2012-10-17 Mihai Bazonemploy a better parser for command-line arguments
2012-10-17 Mihai Bazonthe `sort` option is broken anyway, removed it
2012-10-17 Mihai Bazonadd `semicolons` option in the code generator (default...
2012-10-16 Mihai Bazonfix small glitches in source map generation
2012-10-13 Mihai Bazondisable warnings in the test suite
2012-10-13 Mihai Bazondrop unused function arguments
2012-10-13 Mihai Bazonadd parens to AST_Seq whose parent is AST_Unary
2012-10-13 Mihai Bazonfix compressing benchmark.js (it tried to evaluate...
2012-10-13 Mihai Bazonminor
2012-10-13 Mihai Bazonfix regression from fb5c01c073d06034815d5f3b782fd11cbdf...
2012-10-13 Mihai Bazonfix end tokens in spidermonkey ast import
2012-10-12 Mihai Bazonupdate for acorn
2012-10-12 Mihai Bazonminor
2012-10-12 Mihai Bazonactually enable the option that drops unused names...
2012-10-12 Mihai Bazonremove the $self hack
2012-10-12 Mihai Bazonadd test for issue #12
2012-10-12 Mihai Bazonfix in_boolean_context() (two tests were broken)
2012-10-12 Mihai Bazonuse AST_Lambda for object setters/getters
2012-10-11 Mihai Bazonfix pos in syntax error exception
2012-10-11 Mihai Bazonstealing more hacks from acorn in the name of speed
2012-10-11 Mihai Bazonusing makeComparator from acorn to generate functions...
2012-10-11 Mihai Bazoncleanup
2012-10-11 Mihai Bazonfix propagation of symbol references
2012-10-11 Mihai Bazondisable warnings by default in `minify` (pass warnings...
2012-10-10 Mihai Bazonfix node name
2012-10-10 Mihai Bazonseems cleaner if AST_Label doesn't inherit from AST_Sym...
2012-10-10 Mihai Bazonsmall improvements in wrap_commonjs:
2012-10-10 Mihai Bazondrop unused variable
2012-10-10 Mihai Bazonadd `--lint` and display {file} in scope_warnings
2012-10-09 Mihai Bazonminor
2012-10-09 Mihai Bazonupdate on @cc_on
2012-10-09 Mihai Bazonadd AST_Infinity node
2012-10-09 Mihai Bazonmake `--comments` keep @cc_on too
2012-10-09 Mihai Bazonadded $propdoc to AST nodes and some cleanups
2012-10-09 Mihai Bazonminor AST cleanup (AST_BlockStatement may inherit from...
2012-10-09 Mihai Bazonadd `--ast-help`
2012-10-09 Mihai Bazonfix detecting symbols in use
2012-10-09 Mihai BazonMerge pull request #8 from SevInf/master
2012-10-09 Sergej TatarincevFix nodejs minify without inSourceMap exception
2012-10-08 Mihai Bazonfix `inSourceMap` in `minify` (should read the file)
2012-10-08 Mihai Bazonadd simple API wrapper: UglifyJS.minify
2012-10-08 Mihai Bazonadded some basic API doc
2012-10-08 Mihai Bazonshould not expose base54.sort() in the API docs, I...
2012-10-08 Mihai Bazonadded --self to easily get a browser-runnable version...
2012-10-08 Mihai Bazoneliminate redundant directives in the same scope
2012-10-08 Mihai Bazonfor certain nodes that we invent we might not have...
2012-10-05 Mihai Bazonfix typo
2012-10-05 Mihai Bazonremove unused code
2012-10-05 Mihai Bazonminor
2012-10-05 Mihai Bazonreplace `(function(){ ...no side effects ... })()`...
2012-10-05 Mihai Bazonprevent mangling only when eval is *called*, not when...
2012-10-05 Mihai Bazonadd note about installation
2012-10-05 Mihai Bazonadded --acorn and --spidermonkey options
2012-10-05 Mihai Bazonfixed import of locations from SpiderMonkey AST
2012-10-04 Mihai Bazonuse the appropriate constructor for symbols
2012-10-04 Mihai Bazonminor
2012-10-04 Mihai Bazonremoved some unused variables
2012-10-03 Mihai Bazonmoving code around
2012-10-03 Mihai Bazondefine AST_Node.from_mozilla_ast(ast)
2012-10-03 Mihai Bazonignore tmp/
2012-10-03 Mihai Bazonmore cleanup (dropped AST_SwitchBlock)
2012-10-03 Mihai BazonAST cleanup (dropped AST_StatementBase)
2012-10-03 Mihai Bazonadded package.json
2012-10-03 Mihai Bazonadded option for side-effect-free statements, fix test
2012-10-03 Mihai Bazonfix endless loop in tests
2012-10-03 Mihai Bazondrop tmp. files
2012-10-03 Mihai Bazondocument the CLI tool
2012-10-03 Mihai Bazonfix for `a = !b && !c && !d && !e → a=!(b||c||d||e)`
2012-10-03 Mihai Bazondisable `hoist_vars` by default and change `comparation...
2012-10-02 Mihai Bazonfixed usage string
2012-10-02 Mihai Bazonsupport for `--comments` option to keep comments contai...
2012-10-02 Mihai Bazondiscard annoying nodejs warning
2012-10-02 Mihai Bazonline numbers start at 1
2012-10-02 Mihai Bazonadded option to keep some comments in the output
2012-10-02 Mihai Bazonoption to exclude certain names from mangling
2012-10-02 Mihai Bazonsupport defines
2012-10-02 Mihai Bazon"use strict";
2012-10-02 Mihai Bazonmore constant folding (for names defined with `const`)
2012-10-02 Mihai Bazonadd AST_SymbolConst for names defined with `const`
2012-10-02 Mihai Bazondrop more unused names
2012-10-02 Mihai Bazona shy attempt to obey `width` in the beautifier; added...
2012-09-28 Mihai Bazonminor
2012-09-26 Mihai Bazonfix mangling
2012-09-26 Mihai Bazonremoved the "squeeze" method (it's now effectively...
next