Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit a727054

Browse filesBrowse files
npm-cli-botaduh95
authored andcommitted
deps: upgrade npm to 11.9.0
PR-URL: #61685 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Gürgün Dayıoğlu <hey@gurgun.day>
1 parent c78c49e commit a727054
Copy full SHA for a727054

264 files changed

+1,412-1,520Lines changed: 1412 additions & 1520 deletions

File tree

Expand file treeCollapse file tree
Open diff view settings
Filter options

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree
Open diff view settings
Collapse file

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

Copy file name to clipboardExpand all lines: deps/npm/docs/content/commands/npm-ci.md
+18Lines changed: 18 additions & 0 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,24 @@ run any pre- or post-scripts.
189189

190190

191191

192+
#### `allow-git`
193+
194+
* Default: "all"
195+
* Type: "all", "none", or "root"
196+
197+
Limits the ability for npm to fetch dependencies from git references. That
198+
is, dependencies that point to a git repo instead of a version or semver
199+
range. Please note that this could leave your tree incomplete and some
200+
packages may not function as intended or designed.
201+
202+
`all` allows any git dependencies to be fetched and installed. `none`
203+
prevents any git dependencies from being fetched and installed. `root` only
204+
allows git dependencies defined in your project's package.json to be fetched
205+
installed. Also allows git dependencies to be fetched for other commands
206+
like `npm view`
207+
208+
209+
192210
#### `audit`
193211

194212
* Default: true
Collapse file

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

Copy file name to clipboardExpand all lines: deps/npm/docs/content/commands/npm-dedupe.md
+18Lines changed: 18 additions & 0 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,24 @@ run any pre- or post-scripts.
184184
185185
186186
187+
#### `allow-git`
188+
189+
* Default: "all"
190+
* Type: "all", "none", or "root"
191+
192+
Limits the ability for npm to fetch dependencies from git references. That
193+
is, dependencies that point to a git repo instead of a version or semver
194+
range. Please note that this could leave your tree incomplete and some
195+
packages may not function as intended or designed.
196+
197+
`all` allows any git dependencies to be fetched and installed. `none`
198+
prevents any git dependencies from being fetched and installed. `root` only
199+
allows git dependencies defined in your project's package.json to be fetched
200+
installed. Also allows git dependencies to be fetched for other commands
201+
like `npm view`
202+
203+
204+
187205
#### `audit`
188206

189207
* Default: true
Collapse file

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

Copy file name to clipboardExpand all lines: deps/npm/docs/content/commands/npm-install-ci-test.md
+18Lines changed: 18 additions & 0 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,24 @@ run any pre- or post-scripts.
142142

143143

144144

145+
#### `allow-git`
146+
147+
* Default: "all"
148+
* Type: "all", "none", or "root"
149+
150+
Limits the ability for npm to fetch dependencies from git references. That
151+
is, dependencies that point to a git repo instead of a version or semver
152+
range. Please note that this could leave your tree incomplete and some
153+
packages may not function as intended or designed.
154+
155+
`all` allows any git dependencies to be fetched and installed. `none`
156+
prevents any git dependencies from being fetched and installed. `root` only
157+
allows git dependencies defined in your project's package.json to be fetched
158+
installed. Also allows git dependencies to be fetched for other commands
159+
like `npm view`
160+
161+
162+
145163
#### `audit`
146164

147165
* Default: true
Collapse file

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

Copy file name to clipboardExpand all lines: deps/npm/docs/content/commands/npm-install-test.md
+18Lines changed: 18 additions & 0 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,24 @@ run any pre- or post-scripts.
219219

220220

221221

222+
#### `allow-git`
223+
224+
* Default: "all"
225+
* Type: "all", "none", or "root"
226+
227+
Limits the ability for npm to fetch dependencies from git references. That
228+
is, dependencies that point to a git repo instead of a version or semver
229+
range. Please note that this could leave your tree incomplete and some
230+
packages may not function as intended or designed.
231+
232+
`all` allows any git dependencies to be fetched and installed. `none`
233+
prevents any git dependencies from being fetched and installed. `root` only
234+
allows git dependencies defined in your project's package.json to be fetched
235+
installed. Also allows git dependencies to be fetched for other commands
236+
like `npm view`
237+
238+
239+
222240
#### `audit`
223241

224242
* Default: true
Collapse file

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

Copy file name to clipboardExpand all lines: deps/npm/docs/content/commands/npm-install.md
+18Lines changed: 18 additions & 0 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -561,6 +561,24 @@ run any pre- or post-scripts.
561561

562562

563563

564+
#### `allow-git`
565+
566+
* Default: "all"
567+
* Type: "all", "none", or "root"
568+
569+
Limits the ability for npm to fetch dependencies from git references. That
570+
is, dependencies that point to a git repo instead of a version or semver
571+
range. Please note that this could leave your tree incomplete and some
572+
packages may not function as intended or designed.
573+
574+
`all` allows any git dependencies to be fetched and installed. `none`
575+
prevents any git dependencies from being fetched and installed. `root` only
576+
allows git dependencies defined in your project's package.json to be fetched
577+
installed. Also allows git dependencies to be fetched for other commands
578+
like `npm view`
579+
580+
581+
564582
#### `audit`
565583
566584
* Default: true
Collapse file

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

Copy file name to clipboardExpand all lines: deps/npm/docs/content/commands/npm-link.md
+18Lines changed: 18 additions & 0 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -248,6 +248,24 @@ run any pre- or post-scripts.
248248

249249

250250

251+
#### `allow-git`
252+
253+
* Default: "all"
254+
* Type: "all", "none", or "root"
255+
256+
Limits the ability for npm to fetch dependencies from git references. That
257+
is, dependencies that point to a git repo instead of a version or semver
258+
range. Please note that this could leave your tree incomplete and some
259+
packages may not function as intended or designed.
260+
261+
`all` allows any git dependencies to be fetched and installed. `none`
262+
prevents any git dependencies from being fetched and installed. `root` only
263+
allows git dependencies defined in your project's package.json to be fetched
264+
installed. Also allows git dependencies to be fetched for other commands
265+
like `npm view`
266+
267+
268+
251269
#### `audit`
252270

253271
* Default: true
Collapse file

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

Copy file name to clipboardExpand all lines: deps/npm/docs/content/commands/npm-ls.md
+1-1Lines changed: 1 addition & 1 deletion
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Note that nested packages will *also* show the paths to the specified packages.
2323
For example, running `npm ls promzard` in npm's source tree will show:
2424

2525
```bash
26-
npm@11.8.0 /path/to/npm
26+
npm@11.9.0 /path/to/npm
2727
└─┬ init-package-json@0.0.4
2828
└── promzard@0.1.5
2929
```
Collapse file

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

Copy file name to clipboardExpand all lines: deps/npm/docs/content/commands/npm.md
+1-1Lines changed: 1 addition & 1 deletion
  • Display the source diff
  • Display the rich diff
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.8.0
17+
11.9.0
1818

1919
### Description
2020

Collapse file

‎deps/npm/docs/content/using-npm/config.md‎

Copy file name to clipboardExpand all lines: deps/npm/docs/content/using-npm/config.md
+18Lines changed: 18 additions & 0 deletions
  • Display the source diff
  • Display the rich diff
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,24 @@ upon by the current project.
165165

166166

167167

168+
#### `allow-git`
169+
170+
* Default: "all"
171+
* Type: "all", "none", or "root"
172+
173+
Limits the ability for npm to fetch dependencies from git references. That
174+
is, dependencies that point to a git repo instead of a version or semver
175+
range. Please note that this could leave your tree incomplete and some
176+
packages may not function as intended or designed.
177+
178+
`all` allows any git dependencies to be fetched and installed. `none`
179+
prevents any git dependencies from being fetched and installed. `root` only
180+
allows git dependencies defined in your project's package.json to be fetched
181+
installed. Also allows git dependencies to be fetched for other commands
182+
like `npm view`
183+
184+
185+
168186
#### `allow-same-version`
169187

170188
* Default: false
Collapse file

‎deps/npm/docs/output/commands/npm-access.html‎

Copy file name to clipboardExpand all lines: deps/npm/docs/output/commands/npm-access.html
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@
141141

142142
<section id="content">
143143
<header class="title">
144-
<h1 id="----npm-access----1180">
144+
<h1 id="----npm-access----1190">
145145
<span>npm-access</span>
146-
<span class="version">@11.8.0</span>
146+
<span class="version">@11.9.0</span>
147147
</h1>
148148
<span class="description">Set access level on published packages</span>
149149
</header>

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.