Skip to content

Nirlah/webpack-zip-bundler

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

webpack-zip-bundler

A plugin for packaging assets into a zip archive. It is based on JSZip library https://stuk.github.io/jszip.

Installation

npm install --save-dev webpack-zip-bundler

Usage

const ZipBundlerPlugin = require('webpack-zip-bundler');

...

// add to webpack plugins array
plugins: [
  new ZipBundlerPlugin(options)
]

/*
  options: {
    out: string, output file name, 'out.zip' by default
    regex: Regex, regex to filter assets by their names
  }
*/

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%