Skip to content

v0.7.3

Choose a tag to compare

@matteosacchetto matteosacchetto released this 25 Oct 11:53
· 71 commits to main since this release
5e448dd

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

Full Changelog: v0.7.2...v0.7.3