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
{{ message }}
This repository was archived by the owner on Jun 30, 2020. It is now read-only.
@web-padawan Don't think this is an issue with your code, but it's going to cause problems since babel-helpers isn't included for module builds. Updating to Babel 7.4 includes what appears(?) to be a rather big change to how @babel/preset-env decides what modules to polyfill. This article touches on that. Even with useBuiltIns: false,, it still changes.
Basically, for some reason the ES6 build now thinks that all the tagged template literals (all web components) now needs a babelHelpers.taggedTemplateLiteral wrapper.
@web-padawan Don't think this is an issue with your code, but it's going to cause problems since babel-helpers isn't included for module builds. Updating to Babel 7.4 includes what appears(?) to be a rather big change to how
@babel/preset-envdecides what modules to polyfill. This article touches on that. Even withuseBuiltIns: false,, it still changes.Basically, for some reason the ES6 build now thinks that all the tagged template literals (all web components) now needs a
babelHelpers.taggedTemplateLiteralwrapper.