1.0.0 • Published 4 years ago

zipball1-webpack-plugin v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

Introduction

A webpack plug-in for handling output directory compression files

install

With npm do:

npm install zipball-webpack-plugin

useage

Here's an example webpack config illustrating how to use these options:

// webpack.config.js
const Zip=require('zipball-webpack-plugin');
{
  entry: 'index.js',
  output: {
    path: __dirname + '/dist',
    filename: 'index_bundle.js'
  },
  plugins: [
    new Zip({
      customPath: 'app-1.0.0.zip',
      removeOutputFile: true
    })
  ]
}

options

customPath: Name of your zip file, default ->app-1.0.0.zip, type{stirng} removeOutputFile:Whether to delete the output directory,default ->true, type{boolean}

license

MIT

1.0.1

4 years ago

1.0.0

4 years ago