Skip to content

Commit c161834

Browse files
authoredJun 18, 2017
uglify comparisons: false - fix meteor #8706
Problematic issue what would cause people to disable minification entirely. relates issues in other projects facebook/create-react-app#2379 sleepycat/old_usesthis@523c872 mapbox/mapbox-gl-js#4359 mishoo/UglifyJS#2011 (comment)
1 parent 472fcf8 commit c161834

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎minifier.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ meteorJsMinify = function (source) {
1010
compress: {
1111
drop_debugger: false,
1212
unused: false,
13-
dead_code: false
13+
dead_code: false,
14+
comparisons: false
1415
}
1516
}).code;
1617

0 commit comments

Comments
 (0)
Please sign in to comment.