1.0.1 • Published 6 years ago

disable-output-webpack-plugin v1.0.1

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

disable-output-webpack-plugin

Disables saving output files in Webpack

install

npm install --save-dev disable-output-webpack-plugin

use

Webpack config:

const DisableOutputWebpackPlugin = require('disable-output-webpack-plugin');

module.exports = {
  plugins: [
    new DisableOutputWebpackPlugin()
  ]
}