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
Babel 6.x do not transform export default to module.exports, and most babel presets are written in commonjs which do not compatible with exports.default.
Babel 6.x do not transform
export default
tomodule.exports
, and most babel presets are written in commonjs which do not compatible withexports.default
.Solution:
Change
"build": "babel src -d lib"
to"build": "babel src -d lib && echo \"\nmodule.exports = exports['default'];\" >> lib/index.js"
The text was updated successfully, but these errors were encountered: