jszip-cli

A zip CLI based on jszip.
Installation
Run yarn global add @ffflorian/jszip-cli or npm i -g @ffflorian/jszip-cli.
Usage
Usage: jszip-cli [options] [command]
A zip CLI based on jszip.
Options:
-v, --version output the version number
-l, --level <number> Specify the compression level (default: 5)
-o, --output <dir> Specify the output directory (default: stdout)
-i, --ignore <entry> Ignore a file or directory
-f, --force Force overwriting files
-V, --verbose Enable logging
-h, --help output usage information
Commands:
add [options] <entries...> Add files to the ZIP archive.
extract [options] <archives...> Extract files from ZIP archive(s).
Examples
jszip-cli add -i *.map -o deploy.zip dist/ package.json
jszip-cli extract deploy.zip -o deployment_files/