Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

gzip-all

TehShrike10kWTFPL1.0.0

Create .gz files for all files in a folder

gzip, file

readme

gzip-all

Recursively generate .gz gzipped versions of files recursively for every file in a folder.

API

A single function that takes two arguments: a glob string, and an optional object to pass in as options to glob.

Returns a promise that resolves to an array of all .gz files created.

Programmatic usage

const gzipAll = require('gzip-all')

gzipAll('**/content/*.md').then(newFiles => {
    console.log('yay, created', newFiles.length, 'compressed files!')
})

CLI usage

gzip-all "**/content/*.md"

License

WTFPL