1.0.3 • Published 5 years ago

zip-plugin v1.0.3

Weekly downloads
1
License
ISC
Repository
-
Last release
5 years ago

zip-plugin Build Status

Used for webpack, this plugin packages all the bundle files into a single zip file.

how to use

install this package

npm install zip-plugin -D

and use in webpack.config

// demo webpack.config.js
const zipPlugin = require('zip-plugin');

module.exports = {
  entry: ...,
  output: ...,
  plugins: [
    new zipPlugin({
      filename: 'bundle' // this property used to set zip file name
    })
  ]
}

then, webpack build.

1.0.3

5 years ago

1.0.2

5 years ago

1.0.0

5 years ago