Sync uglify options with lodash-cli.

This commit is contained in:
John-David Dalton
2016-01-07 21:20:03 -08:00
parent 9e56a92c8a
commit 5dc48d1a83

View File

@@ -1,16 +1,16 @@
module.exports = {
'mangle': true,
'compress': {
'comparisons': false,
'keep_fargs': true,
'pure_getters': true,
'unsafe': true,
'unsafe_comps': true,
'warnings': false
},
'mangle': {
'except': ['define']
},
'output': {
'ascii_only': true,
'beautify': false,
'comments': /^!|@cc_on|@license|@preserve/i,
'max_line_len': 500
}
};