disable-output-webpack-plugin
Advanced tools
Comparing version 1.0.0 to 1.0.1
{ | ||
"name": "disable-output-webpack-plugin", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Disables saving output files in Webpack", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
# disable-output-webpack-plugin | ||
Disables saving output files in Webpack | ||
# install | ||
```sh | ||
npm install --save-dev disable-output-webpack-plugin | ||
``` | ||
# use | ||
Webpack config: | ||
```javascript | ||
const DisableOutputWebpackPlugin = require('disable-output-webpack-plugin'); | ||
module.exports = { | ||
plugins: [ | ||
new DisableOutputWebpackPlugin() | ||
] | ||
} | ||
``` |
2369
23