Skip to content

Commit 1c1adae

Browse files
committedJul 9, 2024··
deps: npm-pick-manifest@9.1.0
1 parent 5e4fa18 commit 1c1adae

File tree

4 files changed

+17
-11
lines changed

4 files changed

+17
-11
lines changed
 

‎node_modules/npm-pick-manifest/lib/index.js

+11-5
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,15 @@ const pickManifest = (packument, wanted, opts) => {
123123
const defaultVer = distTags[defaultTag]
124124
if (defaultVer &&
125125
(range === '*' || semver.satisfies(defaultVer, range, { loose: true })) &&
126+
!restricted[defaultVer] &&
126127
!shouldAvoid(defaultVer, avoid)) {
127128
const mani = versions[defaultVer]
128-
if (mani && isBefore(verTimes, defaultVer, time)) {
129+
const ok = mani &&
130+
isBefore(verTimes, defaultVer, time) &&
131+
engineOk(mani, npmVersion, nodeVersion) &&
132+
!mani.deprecated &&
133+
!staged[defaultVer]
134+
if (ok) {
129135
return mani
130136
}
131137
}
@@ -155,10 +161,10 @@ const pickManifest = (packument, wanted, opts) => {
155161
const [verb, manib] = b
156162
const notavoida = !shouldAvoid(vera, avoid)
157163
const notavoidb = !shouldAvoid(verb, avoid)
158-
const notrestra = !restricted[a]
159-
const notrestrb = !restricted[b]
160-
const notstagea = !staged[a]
161-
const notstageb = !staged[b]
164+
const notrestra = !restricted[vera]
165+
const notrestrb = !restricted[verb]
166+
const notstagea = !staged[vera]
167+
const notstageb = !staged[verb]
162168
const notdepra = !mania.deprecated
163169
const notdeprb = !manib.deprecated
164170
const enginea = engineOk(mania, npmVersion, nodeVersion)

‎node_modules/npm-pick-manifest/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "npm-pick-manifest",
3-
"version": "9.0.1",
3+
"version": "9.1.0",
44
"description": "Resolves a matching manifest from a package metadata document according to standard npm semver resolution rules.",
55
"main": "./lib",
66
"files": [

‎package-lock.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
"npm-audit-report": "^5.0.0",
134134
"npm-install-checks": "^6.3.0",
135135
"npm-package-arg": "^11.0.2",
136-
"npm-pick-manifest": "^9.0.1",
136+
"npm-pick-manifest": "^9.1.0",
137137
"npm-profile": "^10.0.0",
138138
"npm-registry-fetch": "^17.1.0",
139139
"npm-user-validate": "^2.0.1",
@@ -9545,9 +9545,9 @@
95459545
}
95469546
},
95479547
"node_modules/npm-pick-manifest": {
9548-
"version": "9.0.1",
9549-
"resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-9.0.1.tgz",
9550-
"integrity": "sha512-Udm1f0l2nXb3wxDpKjfohwgdFUSV50UVwzEIpDXVsbDMXVIEF81a/i0UhuQbhrPMMmdiq3+YMFLFIRVLs3hxQw==",
9548+
"version": "9.1.0",
9549+
"resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-9.1.0.tgz",
9550+
"integrity": "sha512-nkc+3pIIhqHVQr085X9d2JzPzLyjzQS96zbruppqC9aZRm/x8xx6xhI98gHtsfELP2bE+loHq8ZaHFHhe+NauA==",
95519551
"inBundle": true,
95529552
"license": "ISC",
95539553
"dependencies": {

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
"npm-audit-report": "^5.0.0",
9999
"npm-install-checks": "^6.3.0",
100100
"npm-package-arg": "^11.0.2",
101-
"npm-pick-manifest": "^9.0.1",
101+
"npm-pick-manifest": "^9.1.0",
102102
"npm-profile": "^10.0.0",
103103
"npm-registry-fetch": "^17.1.0",
104104
"npm-user-validate": "^2.0.1",

0 commit comments

Comments
 (0)
Please sign in to comment.