Plugin modules would be one way to allow people to tweak for their preferred workflow (having just read the Sass issue #78) while keeping config out of the user's hands. This would also make it easier to port to something else if you ever move away from Webpack.
e.g. here's the complete Sass plugin for nwb - all it does is provide the config and dependencies required to add a new Webpack loader, with a package.json scan for nwb-* modules in nwb itself.
Is there a particular way of implementing plugins which could be supported in create-react-app?
Plugin modules would be one way to allow people to tweak for their preferred workflow (having just read the Sass issue #78) while keeping config out of the user's hands. This would also make it easier to port to something else if you ever move away from Webpack.
e.g. here's the complete Sass plugin for nwb - all it does is provide the config and dependencies required to add a new Webpack loader, with a
package.jsonscan fornwb-*modules in nwb itself.Is there a particular way of implementing plugins which could be supported in create-react-app?