From 8a98ec9877b86fc2d59245b59369df32859d9440 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hu=C3=A1ng=20J=C3=B9nli=C3=A0ng?= Date: Thu, 4 Jun 2020 14:10:19 -0400 Subject: [PATCH] chore: output ascii only standalone minified bundle (#11672) --- Gulpfile.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Gulpfile.js b/Gulpfile.js index 5f0b03c04b51..d85ea54c152d 100644 --- a/Gulpfile.js +++ b/Gulpfile.js @@ -96,6 +96,10 @@ function buildRollup(packages) { extraPlugins.push( rollupTerser({ include: /^.+\.min\.js$/, + // workaround https://bugs.webkit.org/show_bug.cgi?id=212725 + output: { + ascii_only: true, + }, }) ); }