Skip to content

Commit e2fdb65

Browse files
committed
deps: npm-pick-manifest@9.0.1
1 parent 310a7a5 commit e2fdb65

File tree

5 files changed

+18
-23
lines changed

5 files changed

+18
-23
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ const pickManifest = (packument, wanted, opts) => {
134134
const allEntries = Object.entries(versions)
135135
.concat(Object.entries(staged))
136136
.concat(Object.entries(restricted))
137-
.filter(([ver, mani]) => isBefore(verTimes, ver, time))
137+
.filter(([ver]) => isBefore(verTimes, ver, time))
138138

139139
if (!allEntries.length) {
140140
throw Object.assign(new Error(`No versions available for ${name}`), {
@@ -148,7 +148,7 @@ const pickManifest = (packument, wanted, opts) => {
148148
}
149149

150150
const sortSemverOpt = { loose: true }
151-
const entries = allEntries.filter(([ver, mani]) =>
151+
const entries = allEntries.filter(([ver]) =>
152152
semver.satisfies(ver, range, { loose: true }))
153153
.sort((a, b) => {
154154
const [vera, mania] = a

node_modules/npm-pick-manifest/package.json

+6-12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "npm-pick-manifest",
3-
"version": "9.0.0",
3+
"version": "9.0.1",
44
"description": "Resolves a matching manifest from a package metadata document according to standard npm semver resolution rules.",
55
"main": "./lib",
66
"files": [
@@ -9,7 +9,7 @@
99
],
1010
"scripts": {
1111
"coverage": "tap",
12-
"lint": "eslint \"**/*.js\"",
12+
"lint": "eslint \"**/*.{js,cjs,ts,mjs,jsx,tsx}\"",
1313
"test": "tap",
1414
"posttest": "npm run lint",
1515
"postlint": "template-oss-check",
@@ -19,7 +19,7 @@
1919
},
2020
"repository": {
2121
"type": "git",
22-
"url": "https://github.com/npm/npm-pick-manifest.git"
22+
"url": "git+https://github.com/npm/npm-pick-manifest.git"
2323
},
2424
"keywords": [
2525
"npm",
@@ -36,7 +36,7 @@
3636
},
3737
"devDependencies": {
3838
"@npmcli/eslint-config": "^4.0.0",
39-
"@npmcli/template-oss": "4.18.0",
39+
"@npmcli/template-oss": "4.22.0",
4040
"tap": "^16.0.1"
4141
},
4242
"tap": {
@@ -51,13 +51,7 @@
5151
},
5252
"templateOSS": {
5353
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
54-
"version": "4.18.0",
55-
"publish": true,
56-
"ciVersions": [
57-
"16.14.0",
58-
"16.x",
59-
"18.0.0",
60-
"18.x"
61-
]
54+
"version": "4.22.0",
55+
"publish": true
6256
}
6357
}

package-lock.json

+8-7
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.0",
136+
"npm-pick-manifest": "^9.0.1",
137137
"npm-profile": "^10.0.0",
138138
"npm-registry-fetch": "^17.0.1",
139139
"npm-user-validate": "^2.0.0",
@@ -1588,7 +1588,7 @@
15881588
"dependencies": {
15891589
"@npmcli/promise-spawn": "^7.0.0",
15901590
"lru-cache": "^10.0.1",
1591-
"npm-pick-manifest": "^9.0.0",
1591+
"npm-pick-manifest": "^9.0.1",
15921592
"proc-log": "^4.0.0",
15931593
"promise-inflight": "^1.0.1",
15941594
"promise-retry": "^2.0.1",
@@ -8864,10 +8864,11 @@
88648864
}
88658865
},
88668866
"node_modules/npm-pick-manifest": {
8867-
"version": "9.0.0",
8868-
"resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-9.0.0.tgz",
8869-
"integrity": "sha512-VfvRSs/b6n9ol4Qb+bDwNGUXutpy76x6MARw/XssevE0TnctIKcmklJZM5Z7nqs5z5aW+0S63pgCNbpkUNNXBg==",
8867+
"version": "9.0.1",
8868+
"resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-9.0.1.tgz",
8869+
"integrity": "sha512-Udm1f0l2nXb3wxDpKjfohwgdFUSV50UVwzEIpDXVsbDMXVIEF81a/i0UhuQbhrPMMmdiq3+YMFLFIRVLs3hxQw==",
88708870
"inBundle": true,
8871+
"license": "ISC",
88718872
"dependencies": {
88728873
"npm-install-checks": "^6.0.0",
88738874
"npm-normalize-package-bin": "^3.0.0",
@@ -9470,7 +9471,7 @@
94709471
"minipass": "^7.0.2",
94719472
"npm-package-arg": "^11.0.0",
94729473
"npm-packlist": "^8.0.0",
9473-
"npm-pick-manifest": "^9.0.0",
9474+
"npm-pick-manifest": "^9.0.1",
94749475
"npm-registry-fetch": "^17.0.0",
94759476
"proc-log": "^4.0.0",
94769477
"promise-retry": "^2.0.1",
@@ -14808,7 +14809,7 @@
1480814809
"nopt": "^7.2.1",
1480914810
"npm-install-checks": "^6.2.0",
1481014811
"npm-package-arg": "^11.0.2",
14811-
"npm-pick-manifest": "^9.0.0",
14812+
"npm-pick-manifest": "^9.0.1",
1481214813
"npm-registry-fetch": "^17.0.1",
1481314814
"pacote": "^18.0.1",
1481414815
"parse-conflict-json": "^3.0.0",

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.0",
101+
"npm-pick-manifest": "^9.0.1",
102102
"npm-profile": "^10.0.0",
103103
"npm-registry-fetch": "^17.0.1",
104104
"npm-user-validate": "^2.0.0",

workspaces/arborist/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"nopt": "^7.2.1",
2525
"npm-install-checks": "^6.2.0",
2626
"npm-package-arg": "^11.0.2",
27-
"npm-pick-manifest": "^9.0.0",
27+
"npm-pick-manifest": "^9.0.1",
2828
"npm-registry-fetch": "^17.0.1",
2929
"pacote": "^18.0.1",
3030
"parse-conflict-json": "^3.0.0",

0 commit comments

Comments
 (0)