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