webpack-clean-plugin

A Webpack plugin for removing files and folders.

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
webpack-clean-plugin
010.2.37 years ago7 years agoMinified + gzip package size for webpack-clean-plugin in KB

Readme

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 as emit compilce and so on.
emit
path
The Array of file and dictory or just a string.
['./static', './build'] or './build'

License

https://opensource.org/licenses/mit-license.php