webpack:sass by The Reactive Stack
Meteor package to integrate SASS (.scss and .sass) import with Webpack
WARNING: If you are getting "ERROR in Missing binding"
You just have to run this command:
meteor npm rebuild node-sass
It includes sass-resources-loader
This loader will @import your SASS resources into every required SASS module.
So you can use your shared variables & mixins across all SASS styles without manually importing them in each file. Made to work with CSS Modules!
Settings (webpack.json)
css.modules: Enable local CSS by defaultsass: Setting object with node-sass optionssass.includePaths: Set an array of includedPaths for the importsassResources: Set an single or array of paths of shared variables & mixins.