Skip to content

Commit 2f03fb9

Browse files
committed
1 parent 729e893 commit 2f03fb9

Some content is hidden

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

53 files changed

+5062
-51
lines changed

node_modules/.gitignore

+10-3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
!/@npmcli/
2020
/@npmcli/*
2121
!/@npmcli/agent
22+
!/@npmcli/agent/node_modules/
23+
/@npmcli/agent/node_modules/*
24+
!/@npmcli/agent/node_modules/lru-cache
2225
!/@npmcli/disparity-colors
2326
!/@npmcli/fs
2427
!/@npmcli/git
@@ -153,9 +156,6 @@
153156
!/just-diff
154157
!/lru-cache
155158
!/make-fetch-happen
156-
!/make-fetch-happen/node_modules/
157-
/make-fetch-happen/node_modules/*
158-
!/make-fetch-happen/node_modules/cacache
159159
!/minimatch
160160
!/minipass-collect
161161
!/minipass-collect/node_modules/
@@ -227,6 +227,13 @@
227227
!/npm-pick-manifest
228228
!/npm-profile
229229
!/npm-registry-fetch
230+
!/npm-registry-fetch/node_modules/
231+
/npm-registry-fetch/node_modules/*
232+
!/npm-registry-fetch/node_modules/@npmcli/
233+
/npm-registry-fetch/node_modules/@npmcli/*
234+
!/npm-registry-fetch/node_modules/@npmcli/agent
235+
!/npm-registry-fetch/node_modules/cacache
236+
!/npm-registry-fetch/node_modules/make-fetch-happen
230237
!/npm-user-validate
231238
!/npmlog
232239
!/once

node_modules/@npmcli/agent/lib/dns.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict'
22

3-
const LRUCache = require('lru-cache')
3+
const { LRUCache } = require('lru-cache')
44
const dns = require('dns')
55

66
const defaultOptions = exports.defaultOptions = {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
The ISC License
2+
3+
Copyright (c) 2010-2023 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)