https://github.com/mishoo/UglifyJS
Revision 6472f9410ec93c4f934643d7fd7ff3edeef6b191 authored by Mihai Bazon on 17 October 2012, 11:51:27 UTC, committed by Mihai Bazon on 17 October 2012, 11:52:08 UTC
pass `false` to separate statements with newlines instead of semicolons
1 parent 8957b3a
Raw File
Tip revision: 6472f9410ec93c4f934643d7fd7ff3edeef6b191 authored by Mihai Bazon on 17 October 2012, 11:51:27 UTC
add `semicolons` option in the code generator (default: `true`)
Tip revision: 6472f94
package.json
{
    "name": "uglify-js2",
    "description": "JavaScript parser, mangler/compressor and beautifier toolkit",
    "homepage": "http://lisperator.net/uglifyjs",
    "main": "tools/node.js",
    "version": "2.0.0",
    "engines": { "node" : ">=0.4.0" },
    "maintainers": [{
        "name": "Mihai Bazon",
        "email": "mihai.bazon@gmail.com",
        "web": "http://lisperator.net/"
    }],
    "repositories": [{
        "type": "git",
        "url": "https://github.com/mishoo/UglifyJS2.git"
    }],
    "dependencies": {
        "source-map" : "*",
        "optimist"   : "*"
    },
    "bin": {
        "uglifyjs2" : "bin/uglifyjs2"
    },
    "scripts": {"test": "node test/run-tests.js"}
}
back to top