webpack-clean-plugin
A Webpack plugin for removing files and folders.Installation
`` npm install webpack-clean-plugin --save-dev ``Example Webpack Config
var WebpackCleanPlugin = require('webpack-clean-plugin');
module.exports = {
plugins: [
new WebpackCleanPlugin({
on: "emit",
path: ['./static', './build']
})
]
}
on
One of Webpack build steps. Such asemit
compilce
and so on.
emit
path
The Array of file and dictory or just a string.['./static', './build'] or './build'