We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
babel6 uses exports default module value in property and this plugin can't work regular in node without es2015 modules support
require('postcss-moduels').default()
You can fix it by using regular module.exports in src/index.js
module.exports
The text was updated successfully, but these errors were encountered:
Seems like this is related #8
Sorry, something went wrong.
@Outpunk @TrySound in this case preferable to use this plugin http://babeljs.io/docs/plugins/transform-es2015-modules-commonjs
88ce99a
Thanks!
No branches or pull requests
babel6 uses exports default module value in property and this plugin can't work regular in node without es2015 modules support
You can fix it by using regular
module.exports
in src/index.jsThe text was updated successfully, but these errors were encountered: