I use this project in my React Native projects and went to go use it in my ReactJS app. To keep webpack/babel compiling speed up, best practice is to ignore compiling the node_modules. By adding a prepublish hook you can still write ES6 but not require your users to compile your module in development.
I use this project in my React Native projects and went to go use it in my ReactJS app. To keep webpack/babel compiling speed up, best practice is to ignore compiling the node_modules. By adding a
prepublish
hook you can still write ES6 but not require your users to compile your module in development.