-
Notifications
You must be signed in to change notification settings - Fork 354
New issue
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
Add .babelrc to .npmignore #124
Comments
According to Babel's documentation, a |
Let's say you have a project with some third-party dependencies written in ES6. To be ES5 compliant you would use babel to transpile your project as well as your dependencies. When you include i.e. And, as you pointed out, This results in indirect dependencies of my project to your As a reference look at the core |
Sorry for the delay. Thanks for explanation. It's released on |
Your
.babelrc
file is published to npm. This causes i.e that if I want to transpile my project along with dependencies, I am dependent on your babel configuration (plugins, presets, etc).Could you please add
.babelrc
file to.npmignore
?The text was updated successfully, but these errors were encountered: