webpack-auto-clean-build-plugin
v1.0.4
Published
Automatically removes previous chunk output files if the filename is not same as the new output file name.
Downloads
437
Readme
webpack-auto-clean-build-plugin
Automatically remove old assets after each build in webpack watch mode
If you use webpack in watch mode (not dev server), and use hashes in your output file name, then your build folder will quickly rack up versions of every one of your output files.
This plugin makes it so that when a new chunk is generated with a different file name, the previous file name is auto removed.
This makes your project behave very closely to webpack-dev-server, but with writing files to disk, which is much friendlier when used with other web servers.
Does not handle initial clean
This plugin does not handle the initial clean. You should still use something like CleanWebpackPlugin for that.
Setup
var AutoCleanBuildPlugin = require('webpack-auto-clean-build-plugin');
then in
plugins: [ new AutoCleanBuildPlugin() ]