Skip to content

Commit bfa2ff3

Browse files
committedMay 3, 2023
deps: make-fetch-happen@11.1.1
1 parent 877591a commit bfa2ff3

File tree

10 files changed

+1519
-12
lines changed

10 files changed

+1519
-12
lines changed
 

‎node_modules/.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,9 @@
174174
!/libnpmversion
175175
!/lru-cache
176176
!/make-fetch-happen
177+
!/make-fetch-happen/node_modules/
178+
/make-fetch-happen/node_modules/*
179+
!/make-fetch-happen/node_modules/minipass
177180
!/minimatch
178181
!/minipass-collect
179182
!/minipass-collect/node_modules/

‎node_modules/make-fetch-happen/lib/cache/entry.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const { Request, Response } = require('minipass-fetch')
2-
const Minipass = require('minipass')
2+
const { Minipass } = require('minipass')
33
const MinipassFlush = require('minipass-flush')
44
const cacache = require('cacache')
55
const url = require('url')

‎node_modules/make-fetch-happen/lib/remote.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const Minipass = require('minipass')
1+
const { Minipass } = require('minipass')
22
const fetch = require('minipass-fetch')
33
const promiseRetry = require('promise-retry')
44
const ssri = require('ssri')
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
The ISC License
2+
3+
Copyright (c) 2017-2023 npm, Inc., 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.

‎node_modules/make-fetch-happen/node_modules/minipass/index.js

+702
Large diffs are not rendered by default.

‎node_modules/make-fetch-happen/node_modules/minipass/index.mjs

+702
Large diffs are not rendered by default.

‎node_modules/make-fetch-happen/node_modules/minipass/package.json

+76
Original file line numberDiff line numberDiff line change

‎node_modules/make-fetch-happen/package.json

+4-4
Original file line numberDiff line numberDiff line change

‎package-lock.json

+14-5
Original file line numberDiff line numberDiff line change

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
"libnpmsearch": "^6.0.2",
8787
"libnpmteam": "^5.0.3",
8888
"libnpmversion": "^4.0.2",
89-
"make-fetch-happen": "^11.1.0",
89+
"make-fetch-happen": "^11.1.1",
9090
"minimatch": "^7.4.6",
9191
"minipass": "^4.2.8",
9292
"minipass-pipeline": "^1.2.4",

0 commit comments

Comments
 (0)
Please sign in to comment.