lukeed / fly-zip

ZIP compress files with Fly

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

fly-zip npm package

ZIP compress files with Fly.

Install

npm install --save-dev fly-zip

Usage

This will produces a ZIP at releases/Archive.zip, containing all contents within the dist directory.

exports.zip = function * (fly) {
  yield fly.source('dist/**/*').zip({
    dest: 'releases',
    file: 'Archive.zip'
  });
};

API

.zip(options)

options.dest

Type: string
Default: '.'

The directory where the ZIP should be placed. Defaults to Fly's root directory, where flyfile.js is located.

options.file

Type: string
Default: 'archive.zip'

The name of your ZIP file. It must include .zip.

License

MIT © Luke Edwards

About

ZIP compress files with Fly

License:Other


Languages

Language:JavaScript 100.0%