Remove Hash use from Uglify options because it breaks it.

This commit is contained in:
John-David Dalton
2016-04-07 01:20:26 -07:00
parent bbc84903a7
commit 06412d5f12

View File

@@ -1,11 +1,6 @@
'use strict';
var util = require('./util'),
Hash = util.Hash;
/*----------------------------------------------------------------------------*/
module.exports = new Hash({
module.exports = {
'compress': {
'pure_getters': true,
'unsafe': true,
@@ -20,4 +15,4 @@ module.exports = new Hash({
'comments': /^!|@cc_on|@license|@preserve/i,
'max_line_len': 500
}
});
};