chore: output ascii only standalone minified bundle (#11672)

This commit is contained in:
Huáng Jùnliàng 2020-06-04 14:10:19 -04:00 committed by GitHub
parent a3f00896f7
commit 8a98ec9877
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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,
},
})
);
}