Files
lodash/lib/common/uglify.options.js
John-David Dalton ac16bc0e15 Update build scripts.
2015-10-22 21:06:08 -07:00

17 lines
294 B
JavaScript

module.exports = {
'mangle': true,
'compress': {
'comparisons': false,
'keep_fargs': true,
'pure_getters': true,
'unsafe': true,
'unsafe_comps': true,
'warnings': false
},
'output': {
'ascii_only': true,
'beautify': false,
'max_line_len': 500
}
};