0.1.1 • Published 5 years ago

murchiver v0.1.1

Weekly downloads
2
License
ISC
Repository
github
Last release
5 years ago

Murchiver

CLI tool. Zips all directories in current path with support for ignoring specific folders and files

Ignore list

Murchiver uses .murchiver_ignore file for excluding directories and files. All patterns will not be zipped or will not be included in output archive. Murchiver uses glob to specify path and ignored files and folders.

Example:

.murchiver_ignore

node_modules
.*
**/*.scss
  • will not create node_modules.zip
  • will not create archive from any directory starting with . and also excludes files starting with . from archives
  • excludes all files ending with .scss from archives