Skip to content

Commit 034c729

Browse files
committed
deps: update [email protected]
1 parent ddb8be0 commit 034c729

File tree

263 files changed

+24035
-66
lines changed

Some content is hidden

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

263 files changed

+24035
-66
lines changed

DEPENDENCIES.md

+1
Original file line numberDiff line numberDiff line change
@@ -726,6 +726,7 @@ graph LR;
726726
read-->mute-stream;
727727
read-package-json-fast-->json-parse-even-better-errors;
728728
read-package-json-fast-->npm-normalize-package-bin;
729+
rimraf-->glob;
729730
shebang-command-->shebang-regex;
730731
sigstore-->sigstore-bundle["@sigstore/bundle"];
731732
sigstore-->sigstore-core["@sigstore/core"];

node_modules/.gitignore

+29-3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
!/@isaacs/cliui/node_modules/emoji-regex
1313
!/@isaacs/cliui/node_modules/string-width
1414
!/@isaacs/cliui/node_modules/strip-ansi
15+
!/@isaacs/fs-minipass
1516
!/@isaacs/string-locale-compare
1617
!/@npmcli/
1718
/@npmcli/*
@@ -31,6 +32,14 @@
3132
/@npmcli/map-workspaces/node_modules/@npmcli/*
3233
!/@npmcli/map-workspaces/node_modules/@npmcli/name-from-folder
3334
!/@npmcli/metavuln-calculator
35+
!/@npmcli/metavuln-calculator/node_modules/
36+
/@npmcli/metavuln-calculator/node_modules/*
37+
!/@npmcli/metavuln-calculator/node_modules/@npmcli/
38+
/@npmcli/metavuln-calculator/node_modules/@npmcli/*
39+
!/@npmcli/metavuln-calculator/node_modules/@npmcli/fs
40+
!/@npmcli/metavuln-calculator/node_modules/cacache
41+
!/@npmcli/metavuln-calculator/node_modules/unique-filename
42+
!/@npmcli/metavuln-calculator/node_modules/unique-slug
3443
!/@npmcli/name-from-folder
3544
!/@npmcli/node-gyp
3645
!/@npmcli/package-json
@@ -96,9 +105,13 @@
96105
!/cacache
97106
!/cacache/node_modules/
98107
/cacache/node_modules/*
99-
!/cacache/node_modules/@npmcli/
100-
/cacache/node_modules/@npmcli/*
101-
!/cacache/node_modules/@npmcli/fs
108+
!/cacache/node_modules/chownr
109+
!/cacache/node_modules/minizlib
110+
!/cacache/node_modules/mkdirp
111+
!/cacache/node_modules/p-map
112+
!/cacache/node_modules/ssri
113+
!/cacache/node_modules/tar
114+
!/cacache/node_modules/yallist
102115
!/chalk
103116
!/chownr
104117
!/ci-info
@@ -160,6 +173,14 @@
160173
!/just-diff
161174
!/lru-cache
162175
!/make-fetch-happen
176+
!/make-fetch-happen/node_modules/
177+
/make-fetch-happen/node_modules/*
178+
!/make-fetch-happen/node_modules/@npmcli/
179+
/make-fetch-happen/node_modules/@npmcli/*
180+
!/make-fetch-happen/node_modules/@npmcli/fs
181+
!/make-fetch-happen/node_modules/cacache
182+
!/make-fetch-happen/node_modules/unique-filename
183+
!/make-fetch-happen/node_modules/unique-slug
163184
!/minimatch
164185
!/minipass-collect
165186
!/minipass-fetch
@@ -212,9 +233,13 @@
212233
/pacote/node_modules/*
213234
!/pacote/node_modules/@npmcli/
214235
/pacote/node_modules/@npmcli/*
236+
!/pacote/node_modules/@npmcli/fs
215237
!/pacote/node_modules/@npmcli/package-json
216238
!/pacote/node_modules/@npmcli/promise-spawn
217239
!/pacote/node_modules/@npmcli/run-script
240+
!/pacote/node_modules/cacache
241+
!/pacote/node_modules/unique-filename
242+
!/pacote/node_modules/unique-slug
218243
!/parse-conflict-json
219244
!/path-key
220245
!/path-scurry
@@ -231,6 +256,7 @@
231256
!/read-package-json-fast
232257
!/read
233258
!/retry
259+
!/rimraf
234260
!/safer-buffer
235261
!/semver
236262
!/shebang-command
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
The ISC License
2+
3+
Copyright (c) Isaac Z. Schlueter and Contributors
4+
5+
Permission to use, copy, modify, and/or distribute this software for any
6+
purpose with or without fee is hereby granted, provided that the above
7+
copyright notice and this permission notice appear in all copies.
8+
9+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
15+
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

0 commit comments

Comments
 (0)