From 9dec7a1a776f2c08bf272a06500cdfd97d8d1532 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Sun, 17 Jan 2016 04:40:29 +0100 Subject: [PATCH] Bring back ascii_only option in uglifyjs, as it still seems to cause issues, e.g. in gulp test. --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 4f1ef508..3f963d21 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -40,7 +40,7 @@ var docOptions = { var uglifyOptions = { output: { - // ascii_only: true, + ascii_only: true, comments: /^!/ } };