Licence
MIT
Version
0.0.2
Deps
1
Size
4 kB
Vulns
0
Weekly
0
webpack-zipalls-plugin
Webpack 4 plugin to zip all output files.
Getting Started
To begin, you'll need to install webpack-zipalls-plugin:
npm install webpack-zipalls-plugin -D
Config
Add the plugin to your webpack config. For example:
webpack.config.js
module.exports = {
plugins: [
new WebpackZipallsPlugin({
filename: 'bundle'
})
]
};
then the bundle.zip file will be in the webpack output root directory.