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 Oct 26, 2018. It is now read-only.
The output in ./lib is not compatible with IE8 due to usage of unquoted reserved keys (e.g. export.default should be export['default']). I forked the repo hoping that I could fix it using babel-plugin-transform-es3-property-literals and babel-plugin-transform-es3-member-expression-literals but as this thread indicates it doesn't solve the issue: https://phabricator.babeljs.io/T2817. It seems using es3ify is a workaround for now. I can transform your package at build time on my end, but I wonder if it's something that should be addressed here instead.
The text was updated successfully, but these errors were encountered:
The issue is that syncHistoryWithStore is transformed to exports.default = syncHistoryWithStore; instead of exports['default'] = syncHistoryWithStore;.
The output in
./lib
is not compatible with IE8 due to usage of unquoted reserved keys (e.g.export.default
should beexport['default']
). I forked the repo hoping that I could fix it usingbabel-plugin-transform-es3-property-literals
andbabel-plugin-transform-es3-member-expression-literals
but as this thread indicates it doesn't solve the issue: https://phabricator.babeljs.io/T2817. It seems usinges3ify
is a workaround for now. I can transform your package at build time on my end, but I wonder if it's something that should be addressed here instead.The text was updated successfully, but these errors were encountered: