Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Tell uglifyjs to not mangle undefined; saves 44 bytes. Fixes #13759. C…
…lose gh-1239.
  • Loading branch information
mgol committed Apr 15, 2013
1 parent c0088f2 commit 8576e24
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Gruntfile.js
Expand Up @@ -115,6 +115,10 @@ module.exports = function( grunt ) {
sourceMap: "dist/jquery.min.map",
beautify: {
ascii_only: true
},
mangle: {
// saves some bytes when gzipped
except: [ "undefined" ]
}
}
}
Expand Down

0 comments on commit 8576e24

Please sign in to comment.