Skip to content

Commit efc0b35

Browse files
chore: bump version to 0.6.2
1 parent 510cedf commit efc0b35

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ Simple nodejs cli which allows you to create and extract zip/tar files with supp
1010
Install it locally with
1111

1212
```bash
13-
npm i https://github.com/matteosacchetto/node-zip-cli/releases/download/v0.6.1/node-zip-cli-0.6.1.tgz
13+
npm i https://github.com/matteosacchetto/node-zip-cli/releases/download/v0.6.2/node-zip-cli-0.6.2.tgz
1414
```
1515

1616
Or install it globally with
1717

1818
```bash
19-
npm i --location=global https://github.com/matteosacchetto/node-zip-cli/releases/download/v0.6.1/node-zip-cli-0.6.1.tgz
19+
npm i --location=global https://github.com/matteosacchetto/node-zip-cli/releases/download/v0.6.2/node-zip-cli-0.6.2.tgz
2020
```
2121

2222
### Other version
@@ -204,7 +204,7 @@ Allows you to specify paths that you want to exclude. This option follows the sa
204204
> For example, providing `*.mjs` will result in the shell replacing it will all the file matching the wildcard, so as the input to the cli, instead of `"*.mjs"` will be provided the whole list (e.g. "rollup.config.mjs", "test.runner.mjs", ...). Instead, providing `"*.mjs"` will behave as expected, providing as input to the cli the pattern `"*.mjs"`
205205
206206
> [!NOTE]
207-
> Up to the current version (0.6.1) the list of paths to ignore which are specified with this options are applied after default ignore paths (like `.git`) BUT before any .gitignore or .zipignore file. This means that paths you specify here could be overridden by the aforementioned files.
207+
> Up to the current version (0.6.2) the list of paths to ignore which are specified with this options are applied after default ignore paths (like `.git`) BUT before any .gitignore or .zipignore file. This means that paths you specify here could be overridden by the aforementioned files.
208208
209209
###### `--allow-git`
210210

@@ -338,7 +338,7 @@ Allows you to specify paths that you want to exclude. This option follows the sa
338338
> For example, providing `*.mjs` will result in the shell replacing it will all the file matching the wildcard, so as the input to the cli, instead of `"*.mjs"` will be provided the whole list (e.g. "rollup.config.mjs", "test.runner.mjs", ...). Instead, providing `"*.mjs"` will behave as expected, providing as input to the cli the pattern `"*.mjs"`
339339
340340
> [!NOTE]
341-
> Up to the current version (0.6.1) the list of paths to ignore which are specified with this options are applied after default ignore paths (like `.git`) BUT before any .gitignore or .zipignore file. This means that paths you specify here could be overridden by the aforementioned files.
341+
> Up to the current version (0.6.2) the list of paths to ignore which are specified with this options are applied after default ignore paths (like `.git`) BUT before any .gitignore or .zipignore file. This means that paths you specify here could be overridden by the aforementioned files.
342342
343343
###### `--allow-git`
344344

@@ -393,10 +393,10 @@ Simply run this CLI providing to each command all the necessary options.
393393
This file is meant to be placed in a folder which you plan to zip/tar. It is meant to be used instead of the .gitignore, if the content of the folder is not related to git, or as an extension of the .gitignore, where you can specify additional rules related only to the zip file creation. The .zipignore file follow the same syntax and rules of the traditional .gitignore
394394

395395
> [!NOTE]
396-
> Up to the current version (0.6.1) the .zipignore builds on top of already existing .gitignore rules, so if you only want to ignore some additional files you **do not need** to copy paste the content of the .gitignore.
396+
> Up to the current version (0.6.2) the .zipignore builds on top of already existing .gitignore rules, so if you only want to ignore some additional files you **do not need** to copy paste the content of the .gitignore.
397397
398398
> [!WARNING]
399399
> *Current limitaionts*
400-
> Up to the current version (0.6.1) the strategy of ignoring `*` and the not ignore some paths (e.g. `!test`, `!src`, ...) is not supported.
400+
> Up to the current version (0.6.2) the strategy of ignoring `*` and the not ignore some paths (e.g. `!test`, `!src`, ...) is not supported.
401401
>
402-
> Up to the current version (0.6.1) zip/tar and unzip/untar should handle files, directories and symlinks. Though, symlink support is still experimental, so it may not behave as expected. Currently on Windows symlinks are not supported
402+
> Up to the current version (0.6.2) zip/tar and unzip/untar should handle files, directories and symlinks. Though, symlink support is still experimental, so it may not behave as expected. Currently on Windows symlinks are not supported

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-zip-cli",
3-
"version": "0.6.1",
3+
"version": "0.6.2",
44
"description": "Simple nodejs cli which allows you to create and extract zip/tar files with support for .gitignore files",
55
"main": "dist/index.mjs",
66
"bin": "dist/index.mjs",

0 commit comments

Comments
 (0)