v0.7.3
What's Changed
This release fixes an issue with the --dry-run printed tree, which reported a symlink as broken if it pointed to a parent directory not explicitly included in the archive. This is now fixed, correctly pointing to the directory.
Moreover, this release adds the new find command, which allows to print the entry list the same way the linux find command would. This way, this CLI could be used also as a replacement for find with support for .gitignore and .zipignore files, and the output can be piped to native archiver tools (such as zip and tar)
Example usage with zip
node-zip-cli find | zip <archive name> -@Example usage with tar
node-zip-cli find | tar --no-recursion -czf <archive> -T -Pull Requests
- fix: ensure retrieval of the correct mode for parent directories by @matteosacchetto in #128
- feat: add find command by @matteosacchetto in #130
- chore: bump version to 0.7.3 by @matteosacchetto in #131
Full Changelog: v0.7.2...v0.7.3