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.7.1/node-zip-cli-0.7.1.tgz
13
+
npm i https://github.com/matteosacchetto/node-zip-cli/releases/download/v0.7.2/node-zip-cli-0.7.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.7.1/node-zip-cli-0.7.1.tgz
19
+
npm i --location=global https://github.com/matteosacchetto/node-zip-cli/releases/download/v0.7.2/node-zip-cli-0.7.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.7.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.7.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.7.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.7.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,7 +393,7 @@ 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.7.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.7.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
> [!NOTE]
399
399
> Since version (0.7.0) the strategy of ignoring everythin (`*`) and then un-ignoring (!) some paths (e.g. `!test`, `!src`, ...) is supported and behaves like in the gitignore specs. Quoting from [gitignore specs](https://git-scm.com/docs/gitignore): *"It is not possible to re-include a file if a parent directory of that file is excluded. Git doesn’t list excluded directories for performance reasons, so any patterns on contained files have no effect, no matter where they are defined. "*.
@@ -402,6 +402,6 @@ This file is meant to be placed in a folder which you plan to zip/tar. It is mea
402
402
403
403
> [!WARNING]
404
404
> *Current limitations*
405
-
> Up to the current version (0.7.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
405
+
> Up to the current version (0.7.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
406
406
>
407
-
> Up to the current version (0.7.1) only 32-bit zip are supported, 64-bit zip support is not yet implemented.
407
+
> Up to the current version (0.7.2) only 32-bit zip are supported, 64-bit zip support is not yet implemented.
0 commit comments