0.2.4 • Published 7 years ago

exit-zero-webpack-plugin v0.2.4

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

exit-zero-webpack-plugin

npm

This simple plugin ensures that your webpack build always exits zero (i.e. success); this can be useful in environments or situations where a non-zero exit might produces undesirable effects. Note that any errors that occurred during the build will still exist, just simply won't break the build.

Usage

npm install -D exit-zero-webpack-plugin

In your webpack config:

  plugins: [
    new ExitZeroWebpackPlugin({}),
  ]

API

exit-zero-webpack-plugin accepts the following arguments

active: boolean

Determins whether or not to run exit-zero-webpack-plugin. Defaults to true.