fscache-loader

1.0.0 • Public • Published

fscache-loader

Use this loader to speed up your webpack build time a bit.

Make the build 73% faster after first build!

Note: you should only use this in production.

Install

npm install fscache-loader --save-dev

Usage

Use this before all your other loaders.

module.exports = {
    // context is required.
    context: __dirname,
 
    module: {
        loaders: [
            { test: /\.js$/, exclude: /node_modules/, loaders: ['fscache-loader?+silent', 'babel-loader'] },
            // Will not cache less files, only cache the js script for requiring the less files.
            // If you put fscache-loader before less-loader, then it will only
            // cache the entry less file, and modify the sub module file will not cause
            // the cache invalid.
            { test: /\.less$/, loaders: ['fscache-loader?+silent', 'style-loader', 'css-loader', 'less-loader']},
        ]
    }
}

LICENSE

MIT License


© 2017 Towry Wang

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.0
    2
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.0
    2
  • 0.1.0
    0
  • 0.0.1
    0

Package Sidebar

Install

npm i fscache-loader

Weekly Downloads

2

Version

1.0.0

License

MIT

Last publish

Collaborators

  • towry