yibn2008 / fast-sass-loader

High performance sass loader for webpack
250 stars 38 forks source link

loaders should use the webpack exposed filesystem (fs) object #45

Closed jquense closed 2 years ago

jquense commented 6 years ago

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.