Webpack does some caching already against the filesystem, and plugins have the ability to change or augment the fs that webpack uses, to do things like store generated files in memory where appropriate. fast-sass-loader uses the node fs which circumvents any of these possibilities. I think ideally the loader should pass through the fs from the loader context.
Webpack does some caching already against the filesystem, and plugins have the ability to change or augment the
fs
that webpack uses, to do things like store generated files in memory where appropriate.fast-sass-loader
uses the nodefs
which circumvents any of these possibilities. I think ideally the loader should pass through the fs from the loader context.