node-bestzip
node-bestzip copied to clipboard
Provides a `bestzip` command that uses the system `zip` if avaliable, and a Node.js implimentation otherwise.
Would love an option to add new files to an existing ZIP file.
Just like `tar -C`, this is used for one line command without `cd`: ```sh $ bestzip -C dist ../dist.zip . ``` Also [cpy-cli](https://www.npmjs.com/package/cpy-cli) provide this option: ```sh Copy all .html...
Here is my test case in my Windows OS: ```sh $ cd dist && bestzip . ../dist.zip $ cd .. && unzip -l dist.zip Archive: dist.zip Length Date Time Name...
Native `zip` behavior is update exists zip file. We should add a option like delete exists before create. Thanks. From `man zip` description: ```txt where archive is a new or...
I figured out that if I do not put a file in a directory, it will not go into the archive. Is there some sort of option I can use?...
cd build/ && bestzip ../build.zip * not working this feature: (This will not include the build/ folder, it's contents will be top-level.) version 2.1.7 Thank you!
is there a way to pass password as option in zip function to create a password protected zip?
**Issue** Occurs since version 2.1.6. After building the zip in the VM, unzipping it fails on the following error: java.io.FileNotFoundException: /tmp/app/10000243/code/913aece8-2086-4464-9482-6cf626d5a5b1/static/css/6.447b365d.chunk.css (No such file or directory) **Additional info** - Commands...
## Issue When zipping a folder and setting it's output to be in the same exact folder, the process never ends, gets indefinitely pending. #### Example: bestzip dist/app/app.zip dist/app/* ####...
Is there any way to delete source dir after zipping? Or maybe it could be added.