This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

@lipemat/webpack-cleanup-plugin

1.0.0 • Public • Published

Forked version which supports Webpack 4

The official project has been abandoned. This is a replacement.

Installation

yarn add @lipemat/webpack-cleanup-plugin

webpack-cleanup-plugin

This webpack plugin cleans up the extraneous files from the webpack's output path.

Since it runs when the compile process is finished, it is useful when building on production to remove the assets created by previous builds.

npm version npm downloads Build Status

⚠️ Beware! This plugins actually delete files. Make sure it's safe for your app to delete files not generated by webpack. Use the exclude option if you want to keep files that are not webpack assets.

Usage

Then add the plugin to the plugins array in your webpack's config, e.g.:

// webpack.config.js
import WebpackCleanupPlugin from '@lipemat/@lipemat/webpack-cleanup-plugin';
const config = {
  output: {
    path: "/my/output/path"
  },
  // ...
  plugins: [
    new WebpackCleanupPlugin()
  ]
}
export default config;

Options

  • If you want to keep some files in the output path, e.g. a stats.json file generated from some other plugins, use the exclude Array option. It accepts globbing as in minimatch.
// Do not delete `stats.json`, `important.json`, and everything in `folder`
new WebpackCleanupPlugin({
  exclude: ["stats.json", "important.js", "folder/**/*"],
})
  • To mute the console output, use the quiet option:
new WebpackCleanupPlugin({
  quiet: true,
})
  • To print the list of the files that will be deleted without actually deleting them, use the preview option:
new WebpackCleanupPlugin({
  preview: true,
})

Readme

Keywords

Package Sidebar

Install

npm i @lipemat/webpack-cleanup-plugin

Weekly Downloads

92

Version

1.0.0

License

MIT

Unpacked Size

14.3 kB

Total Files

10

Last publish

Collaborators

  • matlipe