1.0.1 • Published 3 years ago

archive-webpack-plugin v1.0.1

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

archive-webpack-plugin

This webpack plugin allows you to compress files into tar, zip and other formats.

Usage

const ArchiveWebpackPlugin = require('archive-webpack-plugin');

config.plugins = [
  new ArchiveWebpackPlugin({
    source: 'dist/',
    destination: 'static.tar',
    format: 'tar' // tar, zip
  })
]

directory structure

dist
│   ├── index.html
│   ├── index.js
│   ├── index.js.map
│   └── index.min.css
├── static.tar