You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This patch release fixes a race condition where last format transform (when using stealTools.export with multiple output formats) overrides previous ones. See #1139
This patch release fixes an issue with builds where the source code uses ES2015 features (like template literals) and the forceES5 flag is set to false, like:
letname="John";lettime="today";exportdefault`Hello ${name}, how are you ${time}?`
This was caused by the transpile package using an old version of estraverse that did not support AST nodes like TemplateLiteral.
uglify-es is no longer maintained and uglify-js does not support ES6+.
terser is a fork of uglify-es that retains API and CLI compatibility with uglify-es and uglify-js@3.
Hopefully this version should not break your build, but we do recommend to test before upgrading and submit any minification issues to https://github.com/terser-js/terser/issues.
Introduce forceES5 flag to skip ES2015 transpilation