Skip to content

Commit bfa2ff3

Browse files
committed
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.

0 commit comments

Comments
 (0)