Skip to content

Commit 7630517

Browse files
committedMay 3, 2023
deps: pacote@15.1.3
1 parent c2d6e0a commit 7630517

File tree

12 files changed

+1525
-17
lines changed

12 files changed

+1525
-17
lines changed
 

‎node_modules/.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,9 @@
250250
!/once
251251
!/p-map
252252
!/pacote
253+
!/pacote/node_modules/
254+
/pacote/node_modules/*
255+
!/pacote/node_modules/minipass
253256
!/parse-conflict-json
254257
!/path-is-absolute
255258
!/path-key

‎node_modules/pacote/lib/dir.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const Fetcher = require('./fetcher.js')
22
const FileFetcher = require('./file.js')
3-
const Minipass = require('minipass')
3+
const { Minipass } = require('minipass')
44
const tarCreateOptions = require('./util/tar-create-options.js')
55
const packlist = require('npm-packlist')
66
const tar = require('tar')

‎node_modules/pacote/lib/fetcher.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const removeTrailingSlashes = require('./util/trailing-slashes.js')
1818
const getContents = require('@npmcli/installed-package-contents')
1919
const readPackageJsonFast = require('read-package-json-fast')
2020
const readPackageJson = promisify(require('read-package-json'))
21-
const Minipass = require('minipass')
21+
const { Minipass } = require('minipass')
2222

2323
const cacheDir = require('./util/cache-dir.js')
2424

‎node_modules/pacote/lib/git.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const hashre = /^[a-f0-9]{40}$/
66
const git = require('@npmcli/git')
77
const pickManifest = require('npm-pick-manifest')
88
const npa = require('npm-package-arg')
9-
const Minipass = require('minipass')
9+
const { Minipass } = require('minipass')
1010
const cacache = require('cacache')
1111
const log = require('proc-log')
1212
const npm = require('./util/npm.js')

‎node_modules/pacote/lib/remote.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const FileFetcher = require('./file.js')
33
const _tarballFromResolved = Symbol.for('pacote.Fetcher._tarballFromResolved')
44
const pacoteVersion = require('../package.json').version
55
const fetch = require('npm-registry-fetch')
6-
const Minipass = require('minipass')
6+
const { Minipass } = require('minipass')
77

88
const _cacheFetches = Symbol.for('pacote.Fetcher._cacheFetches')
99
const _headers = Symbol('_headers')
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/pacote/node_modules/minipass/index.js

+702
Large diffs are not rendered by default.

‎node_modules/pacote/node_modules/minipass/index.mjs

+702
Large diffs are not rendered by default.

‎node_modules/pacote/node_modules/minipass/package.json

+76
Original file line numberDiff line numberDiff line change

‎node_modules/pacote/package.json

+7-6
Original file line numberDiff line numberDiff line change

‎package-lock.json

+15-6
Original file line numberDiff line numberDiff line change

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
"npm-user-validate": "^2.0.0",
103103
"npmlog": "^7.0.1",
104104
"p-map": "^4.0.0",
105-
"pacote": "^15.1.1",
105+
"pacote": "^15.1.3",
106106
"parse-conflict-json": "^3.0.1",
107107
"proc-log": "^3.0.0",
108108
"qrcode-terminal": "^0.12.0",

0 commit comments

Comments
 (0)
Please sign in to comment.