1.0.0 • Published 3 years ago

delete-dir v1.0.0

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

delete-dir

A plugin to delete the file you choose in output directory

Installation

npm install --save-dev delete-dir

Usage

const path = require('path')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const CleanPlugin = require('delete-dir')


module.exports = {

	plugins: [
		new CleanPlugin({include: 'a'}),
	]
}