fly-zip

2.1.0 • Public • Published

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

Package Sidebar

Install

npm i fly-zip

Weekly Downloads

0

Version

2.1.0

License

MIT

Last publish

Collaborators

  • lukeed