UglifyJS.git
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...
2012-09-26 Mihai Bazonsome speedup and more savings from unused vars that...
2012-09-26 Mihai Bazoncompressor successfully moved to TreeTransformer
2012-09-26 Mihai Bazoncheckpoint (refactoring, WIP)
2012-09-26 Mihai Bazonminor
2012-09-25 Mihai Bazonmore cleanups
2012-09-25 Mihai Bazonmoving code around (refactoring, WIP)
2012-09-25 Mihai Bazondiscard all \uFEFF characters (https://github.com/misho...
2012-09-25 Mihai Bazonstarted some refactoring (WIP) -- moving squeezer to...
2012-09-25 Mihai Bazonminor
2012-09-25 Mihai Bazonit's not safe to assume that property access is side...
2012-09-25 Mihai Bazonsome boolean cleanup
2012-09-24 Mihai BazonSupport input source map
2012-09-24 Mihai Bazonminor tests fix
2012-09-23 Mihai Bazonproperly drop mutually-referring declarations that...
2012-09-22 Mihai Bazontree transformer api (WIP)
2012-09-21 Mihai Bazonlog filename in parse errors / compressor warnings
2012-09-21 Mihai Bazonbetter support for multiple input files:
2012-09-21 Mihai Bazonmore on detecting side effects
2012-09-19 Mihai Bazondrop unused variables
2012-09-19 Mihai Bazonsupport -c with no arguments to disable compression...
2012-09-18 Mihai Bazonfixed label scope/mangling
2012-09-18 Mihai Bazonminor
2012-09-18 Mihai Bazonsupport for directives
2012-09-18 Mihai Bazonadded AST_NaN (output as 0/0)
2012-09-17 Mihai Bazononly do the typeof x == "undefined" optimization if...
2012-09-17 Mihai Bazonmoved `typeof foo == "undefined"` ==> `foo === undefine...
2012-09-17 Mihai Bazonfix .undeclared (it's now a function)
2012-09-17 Mihai Bazonminor
2012-09-17 Mihai Bazonone more test for sequences
2012-09-17 Mihai Bazonpossible optimization for AST_Undefined
2012-09-17 Mihai Bazonempty block to empty statement: {} ==> ;
2012-09-17 Mihai Bazonmore smallish optimizations
2012-09-17 Mihai Bazontry negating AST_Binary
2012-09-16 Mihai Bazonsome cleanup
2012-09-16 Mihai Bazonmore sequencesizing (WIP)
2012-09-16 Mihai Bazondrop unused function
2012-09-16 Mihai Bazonrewrite handle_if_return
2012-09-15 Mihai Bazonother small optimization:
2012-09-15 Mihai Bazonfigure out label targets
2012-09-15 Mihai Bazonjoin_vars:
2012-09-14 Mihai Bazoncompress typeof x == "undefined" to x === undefined...
2012-09-14 Mihai Bazonminor
2012-09-14 Mihai Bazonadding an imaginary "return undefined" can sometimes...
2012-09-14 Mihai Bazonmore optimizations that v1 does and some cleanups
2012-09-13 Mihai Bazonadded -m and -c options
next