Skip to content

Commit 55a90ee

Browse files
npm-cli-botaduh95
authored andcommitted
deps: upgrade npm to 11.5.1
PR-URL: #59199 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
1 parent 1c3aadb commit 55a90ee

File tree

238 files changed

+1761
-542
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

238 files changed

+1761
-542
lines changed

deps/npm/docs/content/commands/npm-bugs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ folder and use the `name` property.
2424
2525
#### `browser`
2626
27-
* Default: OS X: `"open"`, Windows: `"start"`, Others: `"xdg-open"`
27+
* Default: macOS: `"open"`, Windows: `"start"`, Others: `"xdg-open"`
2828
* Type: null, Boolean, or String
2929
3030
The browser that is called by npm commands to open websites.

deps/npm/docs/content/commands/npm-docs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ package names at once. If no package name is provided, it will search for a
2424
2525
#### `browser`
2626
27-
* Default: OS X: `"open"`, Windows: `"start"`, Others: `"xdg-open"`
27+
* Default: macOS: `"open"`, Windows: `"start"`, Others: `"xdg-open"`
2828
* Type: null, Boolean, or String
2929
3030
The browser that is called by npm commands to open websites.

deps/npm/docs/content/commands/npm-fund.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Not supported by all npm commands.
8181

8282
#### `browser`
8383

84-
* Default: OS X: `"open"`, Windows: `"start"`, Others: `"xdg-open"`
84+
* Default: macOS: `"open"`, Windows: `"start"`, Others: `"xdg-open"`
8585
* Type: null, Boolean, or String
8686

8787
The browser that is called by npm commands to open websites.

deps/npm/docs/content/commands/npm-install-test.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,23 @@ submitted.
231231

232232

233233

234+
#### `before`
235+
236+
* Default: null
237+
* Type: null or Date
238+
239+
If passed to `npm install`, will rebuild the npm tree such that only
240+
versions that were available **on or before** the given date are installed.
241+
If there are no versions available for the current set of dependencies, the
242+
command will error.
243+
244+
If the requested version is a `dist-tag` and the given tag does not pass the
245+
`--before` filter, the most recent version less than or equal to that tag
246+
will be used. For example, `foo@latest` might install `foo@1.2` even though
247+
`latest` is `2.0`.
248+
249+
250+
234251
#### `bin-links`
235252

236253
* Default: true

deps/npm/docs/content/commands/npm-install.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -619,6 +619,23 @@ submitted.
619619
620620
621621
622+
#### `before`
623+
624+
* Default: null
625+
* Type: null or Date
626+
627+
If passed to `npm install`, will rebuild the npm tree such that only
628+
versions that were available **on or before** the given date are installed.
629+
If there are no versions available for the current set of dependencies, the
630+
command will error.
631+
632+
If the requested version is a `dist-tag` and the given tag does not pass the
633+
`--before` filter, the most recent version less than or equal to that tag
634+
will be used. For example, `foo@latest` might install `foo@1.2` even though
635+
`latest` is `2.0`.
636+
637+
638+
622639
#### `bin-links`
623640
624641
* Default: true

deps/npm/docs/content/commands/npm-ls.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ packages will *also* show the paths to the specified packages. For
2727
example, running `npm ls promzard` in npm's source tree will show:
2828

2929
```bash
30-
npm@11.4.2 /path/to/npm
30+
npm@11.5.1 /path/to/npm
3131
└─┬ init-package-json@0.0.4
3232
└── promzard@0.1.5
3333
```

deps/npm/docs/content/commands/npm-outdated.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,23 @@ brand new workspace within the project.
169169

170170
This value is not exported to the environment for child processes.
171171

172+
#### `before`
173+
174+
* Default: null
175+
* Type: null or Date
176+
177+
If passed to `npm install`, will rebuild the npm tree such that only
178+
versions that were available **on or before** the given date are installed.
179+
If there are no versions available for the current set of dependencies, the
180+
command will error.
181+
182+
If the requested version is a `dist-tag` and the given tag does not pass the
183+
`--before` filter, the most recent version less than or equal to that tag
184+
will be used. For example, `foo@latest` might install `foo@1.2` even though
185+
`latest` is `2.0`.
186+
187+
188+
172189
### See Also
173190

174191
* [package spec](/using-npm/package-spec)

deps/npm/docs/content/commands/npm-repo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ provided, it will search for a `package.json` in the current folder and use the
2222
2323
#### `browser`
2424
25-
* Default: OS X: `"open"`, Windows: `"start"`, Others: `"xdg-open"`
25+
* Default: macOS: `"open"`, Windows: `"start"`, Others: `"xdg-open"`
2626
* Type: null, Boolean, or String
2727
2828
The browser that is called by npm commands to open websites.

deps/npm/docs/content/commands/npm-update.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,23 @@ submitted.
332332

333333

334334

335+
#### `before`
336+
337+
* Default: null
338+
* Type: null or Date
339+
340+
If passed to `npm install`, will rebuild the npm tree such that only
341+
versions that were available **on or before** the given date are installed.
342+
If there are no versions available for the current set of dependencies, the
343+
command will error.
344+
345+
If the requested version is a `dist-tag` and the given tag does not pass the
346+
`--before` filter, the most recent version less than or equal to that tag
347+
will be used. For example, `foo@latest` might install `foo@1.2` even though
348+
`latest` is `2.0`.
349+
350+
351+
335352
#### `bin-links`
336353

337354
* Default: true

deps/npm/docs/content/commands/npm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Note: This command is unaware of workspaces.
1414

1515
### Version
1616

17-
11.4.2
17+
11.5.1
1818

1919
### Description
2020

0 commit comments

Comments
 (0)