Skip to content

Commit 9d55714

Browse files
committed
docs: document v10.11 changes
1 parent 971658f commit 9d55714

File tree

4 files changed

+26
-1
lines changed

4 files changed

+26
-1
lines changed

docs/cli/audit.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,3 +55,15 @@ Don't audit `optionalDependencies`.
5555

5656
If the registry responds with a non-200 status code, the process should exit with 0.
5757
So the process will fail only if the registry actually successfully responds with found vulnerabilities.
58+
59+
### --ignore-unfixable
60+
61+
Added in: v10.11.0
62+
63+
Ignore all CVEs with no resolution.
64+
65+
### --ignore <vulnerability\>
66+
67+
Added in: v10.11.0
68+
69+
Ignore a vulnerability by CVE.

docs/cli/pack.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ Create a tarball from a package.
77

88
## Options
99

10+
### --recursive, -r
11+
12+
Added in: v10.11.0
13+
14+
Pack all packages from the workspace.
15+
1016
### --out <path\>
1117

1218
Customizes the output path for the tarball. Use `%s` and `%v` to include the package name and version, e.g., `%s.tgz` or `some-dir/%s-%v.tgz`. By default, the tarball is saved in the current working directory with the name `<package-name>-<version>.tgz`.
@@ -23,6 +29,12 @@ Specifying custom compression level.
2329

2430
Log output in JSON format.
2531

32+
### --filter &lt;package_selector\>
33+
34+
Added in: v10.11.0
35+
36+
[Read more about filtering.](../filtering.md)
37+
2638
## Life Cycle Scripts
2739

2840
* `prepack`

docs/cli/recursive.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Runs a command in every project of a workspace, when used with the following com
1111
* `list`
1212
* `outdated`
1313
* `publish`
14+
* `pack`
1415
* `rebuild`
1516
* `remove`
1617
* `unlink`

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"packageManager": "pnpm@10.10.0",
2+
"packageManager": "pnpm@10.11.0",
33
"scripts": {
44
"examples": "docusaurus-examples",
55
"copy-docs": "shx rm -rf versioned_docs/version-10.x && shx cp -r docs versioned_docs/version-10.x",

0 commit comments

Comments
 (0)