0.1.1 • Published 6 years ago

webpack-delete-plugin v0.1.1

Weekly downloads
20
License
MIT
Repository
github
Last release
6 years ago

Webpack Delete Plugin

The Webpack Delete plugin is used to delete files after completing the output process.

Installation

npm install webpack-delete-plugin --save-dev

Use

This plugin runs async after the output has been completed. Use it to delete files after they've been built! This plugin does not clean folders for pre-processing.

General Use

module.exports = {
  ...
  plugins: [
    new WebpackDeletePlugin(["./path/file.js", "./path/**/*", "./path/folder/**"])
  ]
}

Delete entire folders with ./path/folder/** - this will delete the folder and everything inside.

WebpackDeletePlugin takes a string or array of strings as input.

0.1.1

6 years ago

0.1.0

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago