-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
Initial Webpack DLL Support #860
Conversation
amilajack
commented
Mar 29, 2017
•
edited
Loading
edited
- Enables Webpack DLL for faster Hot Reloading/Reloading
.babelrc.js
Outdated
@@ -0,0 +1,37 @@ | |||
/** | |||
* @HACK: Babel doesn't support using modules as your `babelrc`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe just edit .babelrc
instead of new file? Like my usage.
Also, we can waiting babel 7 for .babelrc.js
support.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The issue with this is that node-register doesn't support imports. So none of the npm scripts will work because the import statements won't be transpiled. Use your solution of reading and parsing the .babelrc
@jhen0409 couldn't get |