You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,13 +10,13 @@ Simple nodejs cli which allows you to create and extract zip/tar files with supp
10
10
Install it locally with
11
11
12
12
```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
14
14
```
15
15
16
16
Or install it globally with
17
17
18
18
```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
20
20
```
21
21
22
22
### Other version
@@ -204,7 +204,7 @@ Allows you to specify paths that you want to exclude. This option follows the sa
204
204
> 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"`
205
205
206
206
> [!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.
208
208
209
209
###### `--allow-git`
210
210
@@ -338,7 +338,7 @@ Allows you to specify paths that you want to exclude. This option follows the sa
338
338
> 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"`
339
339
340
340
> [!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.
342
342
343
343
###### `--allow-git`
344
344
@@ -393,10 +393,10 @@ Simply run this CLI providing to each command all the necessary options.
393
393
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
394
394
395
395
> [!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.
397
397
398
398
> [!WARNING]
399
399
> *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.
401
401
>
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
0 commit comments