1.0.2 • Published 4 years ago

null-webpack-plugin v1.0.2

Weekly downloads
-
License
ISC
Repository
-
Last release
4 years ago

Clean Plugin for WebPack

A webpack plugin to clean 'output.path' folder for webpack project

Installation

npm install --save-dev null-webpack-plugin

Usage

const NullWebpackPlugin=require('null-webpack-plugin');

module.exports={
    ...

    plugins:[
        //clean output.path folder
        new NullWebpackPlugin()
    ]

    ...
}

module.exports={
    ...

    plugins:[
        //exclude output.path folder
        new NullWebpackPlugin({exclude:'.git'})
    ]
    ...
}

Thanks

xiaozhan