diff options
author | Dave Methvin <dave.methvin@gmail.com> | 2012-10-11 09:38:44 -0400 |
---|---|---|
committer | Dave Methvin <dave.methvin@gmail.com> | 2012-10-11 09:39:21 -0400 |
commit | 798a7a7ea2cb612411b3d9fd87e8b0e894b27de8 (patch) | |
tree | 4df3d752d8cddcc1c2bbfeb53fdea3e5b109c0e4 /grunt.js | |
parent | a60fed4dec85e7b0c3b6fc5741b14cee1552afc4 (diff) | |
download | jquery-798a7a7ea2cb612411b3d9fd87e8b0e894b27de8.tar.gz jquery-798a7a7ea2cb612411b3d9fd87e8b0e894b27de8.zip |
Use Uglify's ascii_only to avoid converting UTF-8 escapes.
Thanks @curiousdannii!
Diffstat (limited to 'grunt.js')
-rw-r--r-- | grunt.js | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -112,7 +112,11 @@ module.exports = function( grunt ) { ], tasks: "dev" }, - uglify: {} + uglify: { + codegen: { + ascii_only: true + } + } }); // Default grunt. |