UglifyJS.git
2012-11-29 Visa KopuFixed reading from STDIN.
2012-11-24 Mihai Bazonfix #55
2012-11-23 Mihai Bazonv2.2.1
2012-11-23 Mihai Bazonfix for https://github.com/mishoo/UglifyJS/issues/474
2012-11-21 Mihai Bazonrename the npm package to "uglify-js" and cli tool...
2012-11-18 Mihai Bazonfix #51
2012-11-17 Mihai Bazonretain (1,eval) as is when it's the expression of an...
2012-11-14 Richard van... Add support for somewhat preserving line numbers.
2012-11-14 Mihai Bazonbetter solution for the last test in constant switch...
2012-11-14 Mihai Bazonoptimize constant switch blocks
2012-11-13 Mihai BazonMerge branch 'optimize_concat' of https://github.com...
2012-11-13 Mihai Bazondon't change order in binary expressions if both operan...
2012-11-12 Richard van... Add simple optimization for empty-string concats.
2012-11-12 Mihai Bazonv2.1.11
2012-11-12 Mihai Bazonfix invalid AST produced by dropping unused variable
2012-11-12 Mihai BazonMerge pull request #41 from Skalman/toString-patch
2012-11-11 Dan Wolffconvert x.toString() to ""+x instead of x+""
2012-11-09 Mihai Bazondeclare dependency versions
2012-11-08 Mihai BazonAST_LabelRef no longer inherits from AST_SymbolRef
2012-11-08 Mihai Bazonv2.1.10
2012-11-08 Mihai Bazonfix API breakage
2012-11-08 Mihai Bazonoptimization for if/break as first statement in a loop...
2012-11-07 Mihai Bazonignore node_modules/
2012-11-07 Mihai Bazonv2.1.9
2012-11-07 Mihai Bazonfix another small regression
2012-11-07 Mihai Bazonv2.1.8
2012-11-07 Mihai Bazonfix regression from 5346fb94 (shouldn't parenthesize...
2012-11-07 Mihai Bazonv2.1.7
2012-11-07 Mihai Bazonadd AST_Accessor and AST_SymbolAccessor node types
2012-11-07 Mihai Bazonparenthesize property access when it's the expression...
2012-11-07 Mihai Bazonfurther fix for parens around New (refs #35)
2012-11-07 Mihai Bazonparenthesize a Call expression when its parent is New
2012-11-07 Mihai Bazonadd proper parens around unary expressions
2012-11-06 Mihai Bazonadd option to mangle names even if eval/with is in use
2012-11-05 Mihai Bazondiscard the hack that worked around the deprecation...
2012-11-05 Mihai Bazonconvert `while` into `for`
2012-11-05 Mihai Bazonminor
2012-11-05 Mihai Bazonminor optimization
2012-11-05 Mihai Bazonprint final semicolon
2012-11-02 Mihai Bazonuse a Dictionary object instead of plain object for...
2012-11-01 Mihai Bazonv2.1.6
2012-11-01 Mihai Bazonit's safe to negate expression in !EXP only in boolean...
2012-11-01 Mihai Bazonadded unsafe_comps for negating `<=` with `>`
2012-11-01 Mihai Bazonfix compressing UnaryPrefix
2012-10-30 Mihai Bazonv2.1.5
2012-10-30 Mihai Bazondon't move expressions containing the binary `in` opera...
2012-10-25 Mihai Bazonv2.1.4
2012-10-25 Mihai Bazoncripple scope to make IE happy :-(
2012-10-25 Mihai Bazontest for fs.existsSync
2012-10-24 Mihai Bazonv2.1.3
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
next