cross-zip icon indicating copy to clipboard operation
cross-zip copied to clipboard

Cross-platform .zip file creation

Results 8 cross-zip issues
Sort by recently updated
recently updated
newest added

Fixes this deprecation warning: > [DEP0147] DeprecationWarning: In future versions of Node.js, fs.rmdir(path, { recursive: true }) will be removed. Use fs.rm(path, { recursive: true }) instead https://nodejs.org/api/deprecations.html#DEP0147 Not available...

Adding zip arguments to control compression level and inclusion of base folder and updating tests to support Node v16.0+.

When used on windows with path `./` only files starting with `.` are added to the zip file instead of the whole folder. Probably because of the command used for...

On macOS, `zip -r -y` does **not** synchronize deletions with an existing zip archive. You need `--filesync` or `-FS` for that behavior.

#15 No breaking change. `includeBaseDirectory` is `false` by default.

Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. Release notes Sourced from actions/checkout's releases. v4.0.0 What's Changed Update default runtime to node20 by @​takost in actions/checkout#1436 Support fetching without the --progress option...

Bumps [actions/setup-node](https://github.com/actions/setup-node) from 2 to 4. Release notes Sourced from actions/setup-node's releases. v4.0.0 What's Changed In scope of this release we changed version of node runtime for action from node16...

I got this warning from your package. It looks easy to fix. Just to let you know: ``` (node:18676) [DEP0147] DeprecationWarning: In future versions of Node.js, fs.rmdir(path, { recursive: true...