1.0.4 • Published 4 years ago

ignore-unchanged-webpack-plugin v1.0.4

Weekly downloads
2
License
ISC
Repository
github
Last release
4 years ago
npm install --save-dev ignore-unchanged-webpack-plugin

To build the bundle without overwriting the unchanged files

Overwriting the unchanged files will change the file modification time and can break caching mechanisms

webpack.config.js

const IgnoreUnchangedFilesPlugin = require('ignore-unchanged-webpack-plugin');

module.exports = {
  module: {
    rules: [
      {
        test: /\.css$/,
        use: ExtractTextPlugin.extract({
          fallback: 'style-loader',
          use: 'css-loader',
        }),
      },
    ],
  },
  plugins: [new IgnoreUnchangedFilesPlugin()],
};
1.0.4

4 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago