Skip to content

Commit 45f8d6f

Browse files
committed
1 parent f6f6a18 commit 45f8d6f

Some content is hidden

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

77 files changed

+6659
-878
lines changed

DEPENDENCIES.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ graph LR;
8282
libnpmversion-->semver;
8383
make-fetch-happen-->cacache;
8484
make-fetch-happen-->minipass-fetch;
85+
make-fetch-happen-->npmcli-agent["@npmcli/agent"];
8586
make-fetch-happen-->ssri;
8687
nopt-->abbrev;
8788
normalize-package-data-->hosted-git-info;
@@ -259,8 +260,6 @@ graph LR;
259260
```mermaid
260261
graph LR;
261262
agent-base-->debug;
262-
agentkeepalive-->debug;
263-
agentkeepalive-->depd;
264263
agentkeepalive-->humanize-ms;
265264
aggregate-error-->clean-stack;
266265
aggregate-error-->indent-string;
@@ -460,6 +459,7 @@ graph LR;
460459
make-fetch-happen-->minipass-pipeline;
461460
make-fetch-happen-->minipass;
462461
make-fetch-happen-->negotiator;
462+
make-fetch-happen-->npmcli-agent["@npmcli/agent"];
463463
make-fetch-happen-->promise-retry;
464464
make-fetch-happen-->socks-proxy-agent;
465465
make-fetch-happen-->ssri;
@@ -598,6 +598,8 @@ graph LR;
598598
npm-registry-fetch-->minizlib;
599599
npm-registry-fetch-->npm-package-arg;
600600
npm-registry-fetch-->proc-log;
601+
npmcli-agent-->lru-cache;
602+
npmcli-agent-->socks;
601603
npmcli-arborist-->benchmark;
602604
npmcli-arborist-->bin-links;
603605
npmcli-arborist-->cacache;
@@ -828,4 +830,4 @@ packages higher up the chain.
828830
- @npmcli/git, make-fetch-happen, @npmcli/config, init-package-json
829831
- @npmcli/installed-package-contents, @npmcli/map-workspaces, cacache, npm-pick-manifest, @npmcli/run-script, read-package-json, promzard
830832
- @npmcli/docs, @npmcli/fs, npm-bundled, read-package-json-fast, unique-filename, npm-install-checks, npm-package-arg, npm-packlist, normalize-package-data, bin-links, nopt, npmlog, parse-conflict-json, @npmcli/mock-globals, read
831-
- @npmcli/eslint-config, @npmcli/template-oss, ignore-walk, semver, npm-normalize-package-bin, @npmcli/name-from-folder, json-parse-even-better-errors, fs-minipass, ssri, unique-slug, @npmcli/promise-spawn, hosted-git-info, proc-log, validate-npm-package-name, @npmcli/node-gyp, minipass-fetch, @npmcli/query, cmd-shim, read-cmd-shim, write-file-atomic, abbrev, are-we-there-yet, gauge, minify-registry-metadata, ini, @npmcli/disparity-colors, mute-stream, npm-audit-report, npm-user-validate
833+
- @npmcli/eslint-config, @npmcli/template-oss, ignore-walk, semver, npm-normalize-package-bin, @npmcli/name-from-folder, json-parse-even-better-errors, fs-minipass, ssri, unique-slug, @npmcli/promise-spawn, hosted-git-info, proc-log, validate-npm-package-name, @npmcli/node-gyp, minipass-fetch, @npmcli/query, cmd-shim, read-cmd-shim, write-file-atomic, abbrev, are-we-there-yet, gauge, minify-registry-metadata, ini, @npmcli/disparity-colors, mute-stream, @npmcli/agent, npm-audit-report, npm-user-validate

node_modules/.gitignore

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
!/@npmcli/metavuln-calculator
2828
!/@npmcli/metavuln-calculator/node_modules/
2929
/@npmcli/metavuln-calculator/node_modules/*
30+
!/@npmcli/metavuln-calculator/node_modules/make-fetch-happen
3031
!/@npmcli/metavuln-calculator/node_modules/npm-registry-fetch
3132
!/@npmcli/metavuln-calculator/node_modules/pacote
3233
!/@npmcli/name-from-folder
@@ -97,7 +98,6 @@
9798
!/debug/node_modules/ms
9899
!/defaults
99100
!/delegates
100-
!/depd
101101
!/diff
102102
!/eastasianwidth
103103
!/emoji-regex
@@ -149,6 +149,9 @@
149149
!/just-diff
150150
!/lru-cache
151151
!/make-fetch-happen
152+
!/make-fetch-happen/node_modules/
153+
/make-fetch-happen/node_modules/*
154+
!/make-fetch-happen/node_modules/minipass
152155
!/minimatch
153156
!/minipass-collect
154157
!/minipass-collect/node_modules/
@@ -188,6 +191,7 @@
188191
!/node-gyp/node_modules/brace-expansion
189192
!/node-gyp/node_modules/gauge
190193
!/node-gyp/node_modules/glob
194+
!/node-gyp/node_modules/make-fetch-happen
191195
!/node-gyp/node_modules/minimatch
192196
!/node-gyp/node_modules/nopt
193197
!/node-gyp/node_modules/npmlog
@@ -207,7 +211,6 @@
207211
!/npm-registry-fetch
208212
!/npm-registry-fetch/node_modules/
209213
/npm-registry-fetch/node_modules/*
210-
!/npm-registry-fetch/node_modules/make-fetch-happen
211214
!/npm-registry-fetch/node_modules/minipass
212215
!/npm-user-validate
213216
!/npmlog
@@ -256,6 +259,9 @@
256259
!/shebang-regex
257260
!/signal-exit
258261
!/sigstore
262+
!/sigstore/node_modules/
263+
/sigstore/node_modules/*
264+
!/sigstore/node_modules/make-fetch-happen
259265
!/smart-buffer
260266
!/socks-proxy-agent
261267
!/socks
@@ -281,6 +287,9 @@
281287
!/tiny-relative-date
282288
!/treeverse
283289
!/tuf-js
290+
!/tuf-js/node_modules/
291+
/tuf-js/node_modules/*
292+
!/tuf-js/node_modules/make-fetch-happen
284293
!/unique-filename
285294
!/unique-slug
286295
!/util-deprecate

0 commit comments

Comments
 (0)