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 has been archived by the owner on Aug 4, 2021. It is now read-only.
For bundling our library we are using "transform-runtime" together with polyfill: false flag. Even if setting runtimeHelpers: true as suggested in the documentation we are seeing this confusing message:
The '${helper}' Babel helper is used more than once in your code.
BTW: We have one bundle were we do not transpile es2015 classes (for modern clients/nodejs). In this case the whole detection in preflightCheck.js might be broken as it explicitely check for usage of the class helper to detect the runtime usage.
For bundling our library we are using "transform-runtime" together with
polyfill: false
flag. Even if settingruntimeHelpers: true
as suggested in the documentation we are seeing this confusing message:which should probably not happen in my opinion. Looking through the code it seems changing this in https://github.com/rollup/rollup-plugin-babel/blob/master/src/index.js#L64 should be enough:
into
The text was updated successfully, but these errors were encountered: