Skip to content

Commit b9e2659

Browse files
committed
Disabled the UglifyJS screwIE8 option
As of grunt-contrib-uglify version 2.0 this option is enabled by default. However, I'm not ready to drop support for IE8 just yet.
1 parent 604b0f7 commit b9e2659

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Gruntfile.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,8 @@ module.exports = function(grunt) {
140140
dest: '<%= buildpath %>/<%= files.min %>',
141141
options: {
142142
banner: '<%= banner %>',
143-
report: 'gzip'
143+
report: 'gzip',
144+
screwIE8: false
144145
}
145146
}
146147
},

0 commit comments

Comments
 (0)