Skip to content

Commit a39556f

Browse files
committed
deps: @npmcli/[email protected]
1 parent 1525a5e commit a39556f

File tree

21 files changed

+81
-60
lines changed

21 files changed

+81
-60
lines changed

.github/workflows/pull-request.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ jobs:
3838
id: commit
3939
continue-on-error: true
4040
run: |
41-
npx --offline commitlint -V --from origin/${{ github.base_ref }} --to ${{ github.event.pull_request.head.sha }}
41+
npx --offline commitlint -V --from 'origin/${{ github.base_ref }}' --to ${{ github.event.pull_request.head.sha }}
4242
- name: Run Commitlint on PR Title
4343
if: steps.commit.outcome == 'failure'
4444
run: |
45-
echo ${{ github.event.pull_request.title }} | npx --offline commitlint -V
45+
echo '${{ github.event.pull_request.title }}' | npx --offline commitlint -V

.github/workflows/release.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -351,11 +351,18 @@ jobs:
351351
352352
if (updateComment) {
353353
console.log('Found comment to update:', JSON.stringify(updateComment, null, 2))
354+
let body = updateComment.body.replace(/Workflow run: :[a-z_]+:/, `Workflow run: :${RESULT}:`)
355+
if (RESULT === 'x') {
356+
body += `\n\n:rotating_light:`
357+
body += ` @npm/cli-team: The post-release workflow failed for this release.`
358+
body += ` Manual steps may need to be taken after examining the workflow output`
359+
body += ` from the above workflow run. :rotating_light:`
360+
}
354361
await github.rest.issues.updateComment({
355362
owner,
356363
repo,
364+
body,
357365
comment_id: updateComment.id,
358-
body: updateComment.body.replace(/Workflow run: :[a-z_]+:/, `Workflow run: :${RESULT}:`),
359366
})
360367
} else {
361368
console.log('No matching comments found:', JSON.stringify(comments, null, 2))

docs/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"devDependencies": {
2323
"@isaacs/string-locale-compare": "^1.1.0",
2424
"@npmcli/eslint-config": "^4.0.0",
25-
"@npmcli/template-oss": "4.11.1",
25+
"@npmcli/template-oss": "4.11.3",
2626
"front-matter": "^4.0.2",
2727
"ignore-walk": "^6.0.0",
2828
"jsdom": "^20.0.3",
@@ -56,7 +56,7 @@
5656
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
5757
"ciVersions": "latest",
5858
"engines": "^14.17.0 || ^16.13.0 || >=18.0.0",
59-
"version": "4.11.1",
59+
"version": "4.11.3",
6060
"content": "../scripts/template-oss/index.js",
6161
"workspaceRepo": {
6262
"add": {

mock-registry/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
},
3535
"templateOSS": {
3636
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
37-
"version": "4.11.1"
37+
"version": "4.11.3"
3838
},
3939
"tap": {
4040
"no-coverage": true,
@@ -46,7 +46,7 @@
4646
"devDependencies": {
4747
"@npmcli/arborist": "^6.1.1",
4848
"@npmcli/eslint-config": "^4.0.1",
49-
"@npmcli/template-oss": "4.11.1",
49+
"@npmcli/template-oss": "4.11.3",
5050
"nock": "^13.2.9",
5151
"npm-package-arg": "^10.1.0",
5252
"pacote": "^15.0.7",

node_modules/.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@
2121
!/@npmcli/git
2222
!/@npmcli/installed-package-contents
2323
!/@npmcli/map-workspaces
24+
!/@npmcli/map-workspaces/node_modules/
25+
/@npmcli/map-workspaces/node_modules/*
26+
!/@npmcli/map-workspaces/node_modules/@npmcli/
27+
/@npmcli/map-workspaces/node_modules/@npmcli/*
28+
!/@npmcli/map-workspaces/node_modules/@npmcli/name-from-folder
2429
!/@npmcli/metavuln-calculator
2530
!/@npmcli/name-from-folder
2631
!/@npmcli/node-gyp

package-lock.json

+33-24
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@
163163
"@npmcli/git": "^4.0.1",
164164
"@npmcli/mock-registry": "^1.0.0",
165165
"@npmcli/promise-spawn": "^6.0.1",
166-
"@npmcli/template-oss": "4.11.1",
166+
"@npmcli/template-oss": "4.11.3",
167167
"licensee": "^10.0.0",
168168
"nock": "^13.2.4",
169169
"npm-packlist": "^7.0.4",
@@ -184,7 +184,7 @@
184184
"devDependencies": {
185185
"@isaacs/string-locale-compare": "^1.1.0",
186186
"@npmcli/eslint-config": "^4.0.0",
187-
"@npmcli/template-oss": "4.11.1",
187+
"@npmcli/template-oss": "4.11.3",
188188
"front-matter": "^4.0.2",
189189
"ignore-walk": "^6.0.0",
190190
"jsdom": "^20.0.3",
@@ -209,7 +209,7 @@
209209
"devDependencies": {
210210
"@npmcli/arborist": "^6.1.1",
211211
"@npmcli/eslint-config": "^4.0.1",
212-
"@npmcli/template-oss": "4.11.1",
212+
"@npmcli/template-oss": "4.11.3",
213213
"nock": "^13.2.9",
214214
"npm-package-arg": "^10.1.0",
215215
"pacote": "^15.0.7",
@@ -2163,11 +2163,12 @@
21632163
}
21642164
},
21652165
"node_modules/@npmcli/map-workspaces": {
2166-
"version": "3.0.0",
2166+
"version": "3.0.1",
2167+
"resolved": "https://registry.npmjs.org/@npmcli/map-workspaces/-/map-workspaces-3.0.1.tgz",
2168+
"integrity": "sha512-QXwE2p5zRTP6X8Irgf/swYwwdQEalSA1GBm0IGE/86R5EJbUGgKMOP0kOjaJWJxaWPkSqyhM8N50SPxFHTfkNg==",
21672169
"inBundle": true,
2168-
"license": "ISC",
21692170
"dependencies": {
2170-
"@npmcli/name-from-folder": "^1.0.1",
2171+
"@npmcli/name-from-folder": "^2.0.0",
21712172
"glob": "^8.0.1",
21722173
"minimatch": "^5.0.1",
21732174
"read-package-json-fast": "^3.0.0"
@@ -2176,6 +2177,15 @@
21762177
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
21772178
}
21782179
},
2180+
"node_modules/@npmcli/map-workspaces/node_modules/@npmcli/name-from-folder": {
2181+
"version": "2.0.0",
2182+
"resolved": "https://registry.npmjs.org/@npmcli/name-from-folder/-/name-from-folder-2.0.0.tgz",
2183+
"integrity": "sha512-pwK+BfEBZJbKdNYpHHRTNBwBoqrN/iIMO0AiGvYsp3Hoaq0WbgGSWQR6SCldZovoDpY3yje5lkFUe6gsDgJ2vg==",
2184+
"inBundle": true,
2185+
"engines": {
2186+
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
2187+
}
2188+
},
21792189
"node_modules/@npmcli/metavuln-calculator": {
21802190
"version": "5.0.0",
21812191
"license": "ISC",
@@ -2195,7 +2205,6 @@
21952205
},
21962206
"node_modules/@npmcli/name-from-folder": {
21972207
"version": "1.0.1",
2198-
"inBundle": true,
21992208
"license": "ISC"
22002209
},
22012210
"node_modules/@npmcli/node-gyp": {
@@ -2258,9 +2267,9 @@
22582267
"link": true
22592268
},
22602269
"node_modules/@npmcli/template-oss": {
2261-
"version": "4.11.1",
2262-
"resolved": "https://registry.npmjs.org/@npmcli/template-oss/-/template-oss-4.11.1.tgz",
2263-
"integrity": "sha512-Rs0sYcHhbcLA9mfQz/ojdNjKIMqyPG9kA/Ie2W4OxuBeVR/rhDf7yL4iqTK4Rum9dRVz9jWXex5PDNyDyiQnHw==",
2270+
"version": "4.11.3",
2271+
"resolved": "https://registry.npmjs.org/@npmcli/template-oss/-/template-oss-4.11.3.tgz",
2272+
"integrity": "sha512-AEpwlpIXsiPUnM9gFHQHtXkyq1atSHL+bINSANPrR9SAwXSGchprbXRxZunlciWvEkX+GS99tbE6k65dbj8MgQ==",
22642273
"dev": true,
22652274
"hasInstallScript": true,
22662275
"dependencies": {
@@ -14357,7 +14366,7 @@
1435714366
"@npmcli/eslint-config": "^4.0.0",
1435814367
"@npmcli/mock-registry": "^1.0.0",
1435914368
"@npmcli/promise-spawn": "^6.0.1",
14360-
"@npmcli/template-oss": "4.11.1",
14369+
"@npmcli/template-oss": "4.11.3",
1436114370
"http-proxy": "^1.18.1",
1436214371
"just-extend": "^6.1.1",
1436314372
"just-safe-set": "^4.1.1",
@@ -14412,7 +14421,7 @@
1441214421
},
1441314422
"devDependencies": {
1441414423
"@npmcli/eslint-config": "^4.0.0",
14415-
"@npmcli/template-oss": "4.11.1",
14424+
"@npmcli/template-oss": "4.11.3",
1441614425
"benchmark": "^2.1.4",
1441714426
"chalk": "^4.1.0",
1441814427
"minify-registry-metadata": "^3.0.0",
@@ -14440,7 +14449,7 @@
1444014449
},
1444114450
"devDependencies": {
1444214451
"@npmcli/eslint-config": "^4.0.0",
14443-
"@npmcli/template-oss": "4.11.1",
14452+
"@npmcli/template-oss": "4.11.3",
1444414453
"tap": "^16.3.2"
1444514454
},
1444614455
"engines": {
@@ -14457,7 +14466,7 @@
1445714466
"devDependencies": {
1445814467
"@npmcli/eslint-config": "^4.0.0",
1445914468
"@npmcli/mock-registry": "^1.0.0",
14460-
"@npmcli/template-oss": "4.11.1",
14469+
"@npmcli/template-oss": "4.11.3",
1446114470
"nock": "^13.2.4",
1446214471
"tap": "^16.3.2"
1446314472
},
@@ -14481,7 +14490,7 @@
1448114490
},
1448214491
"devDependencies": {
1448314492
"@npmcli/eslint-config": "^4.0.0",
14484-
"@npmcli/template-oss": "4.11.1",
14493+
"@npmcli/template-oss": "4.11.3",
1448514494
"tap": "^16.3.2"
1448614495
},
1448714496
"engines": {
@@ -14508,7 +14517,7 @@
1450814517
"devDependencies": {
1450914518
"@npmcli/eslint-config": "^4.0.0",
1451014519
"@npmcli/mock-registry": "^1.0.0",
14511-
"@npmcli/template-oss": "4.11.1",
14520+
"@npmcli/template-oss": "4.11.3",
1451214521
"bin-links": "^4.0.1",
1451314522
"just-extend": "^6.1.1",
1451414523
"just-safe-set": "^4.1.1",
@@ -14528,7 +14537,7 @@
1452814537
},
1452914538
"devDependencies": {
1453014539
"@npmcli/eslint-config": "^4.0.0",
14531-
"@npmcli/template-oss": "4.11.1",
14540+
"@npmcli/template-oss": "4.11.3",
1453214541
"tap": "^16.3.2"
1453314542
},
1453414543
"engines": {
@@ -14544,7 +14553,7 @@
1454414553
},
1454514554
"devDependencies": {
1454614555
"@npmcli/eslint-config": "^4.0.0",
14547-
"@npmcli/template-oss": "4.11.1",
14556+
"@npmcli/template-oss": "4.11.3",
1454814557
"nock": "^13.2.4",
1454914558
"tap": "^16.3.2"
1455014559
},
@@ -14561,7 +14570,7 @@
1456114570
},
1456214571
"devDependencies": {
1456314572
"@npmcli/eslint-config": "^4.0.0",
14564-
"@npmcli/template-oss": "4.11.1",
14573+
"@npmcli/template-oss": "4.11.3",
1456514574
"minipass": "^4.0.0",
1456614575
"nock": "^13.2.4",
1456714576
"tap": "^16.3.2"
@@ -14581,7 +14590,7 @@
1458114590
},
1458214591
"devDependencies": {
1458314592
"@npmcli/eslint-config": "^4.0.0",
14584-
"@npmcli/template-oss": "4.11.1",
14593+
"@npmcli/template-oss": "4.11.3",
1458514594
"nock": "^13.0.7",
1458614595
"spawk": "^1.7.1",
1458714596
"tap": "^16.3.2"
@@ -14603,7 +14612,7 @@
1460314612
"devDependencies": {
1460414613
"@npmcli/eslint-config": "^4.0.0",
1460514614
"@npmcli/mock-registry": "^1.0.0",
14606-
"@npmcli/template-oss": "4.11.1",
14615+
"@npmcli/template-oss": "4.11.3",
1460714616
"lodash.clonedeep": "^4.5.0",
1460814617
"nock": "^13.2.4",
1460914618
"tap": "^16.3.2"
@@ -14620,7 +14629,7 @@
1462014629
},
1462114630
"devDependencies": {
1462214631
"@npmcli/eslint-config": "^4.0.0",
14623-
"@npmcli/template-oss": "4.11.1",
14632+
"@npmcli/template-oss": "4.11.3",
1462414633
"nock": "^13.2.4",
1462514634
"tap": "^16.3.2"
1462614635
},
@@ -14637,7 +14646,7 @@
1463714646
},
1463814647
"devDependencies": {
1463914648
"@npmcli/eslint-config": "^4.0.0",
14640-
"@npmcli/template-oss": "4.11.1",
14649+
"@npmcli/template-oss": "4.11.3",
1464114650
"nock": "^13.2.4",
1464214651
"tap": "^16.3.2"
1464314652
},
@@ -14657,7 +14666,7 @@
1465714666
},
1465814667
"devDependencies": {
1465914668
"@npmcli/eslint-config": "^4.0.0",
14660-
"@npmcli/template-oss": "4.11.1",
14669+
"@npmcli/template-oss": "4.11.3",
1466114670
"require-inject": "^1.4.4",
1466214671
"tap": "^16.3.2"
1466314672
},

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@
196196
"@npmcli/git": "^4.0.1",
197197
"@npmcli/mock-registry": "^1.0.0",
198198
"@npmcli/promise-spawn": "^6.0.1",
199-
"@npmcli/template-oss": "4.11.1",
199+
"@npmcli/template-oss": "4.11.3",
200200
"licensee": "^10.0.0",
201201
"nock": "^13.2.4",
202202
"npm-packlist": "^7.0.4",

smoke-tests/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"@npmcli/eslint-config": "^4.0.0",
2222
"@npmcli/mock-registry": "^1.0.0",
2323
"@npmcli/promise-spawn": "^6.0.1",
24-
"@npmcli/template-oss": "4.11.1",
24+
"@npmcli/template-oss": "4.11.3",
2525
"http-proxy": "^1.18.1",
2626
"just-extend": "^6.1.1",
2727
"just-safe-set": "^4.1.1",
@@ -32,7 +32,7 @@
3232
"license": "ISC",
3333
"templateOSS": {
3434
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
35-
"version": "4.11.1",
35+
"version": "4.11.3",
3636
"content": "../scripts/template-oss/index.js"
3737
},
3838
"tap": {

workspaces/arborist/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
},
4040
"devDependencies": {
4141
"@npmcli/eslint-config": "^4.0.0",
42-
"@npmcli/template-oss": "4.11.1",
42+
"@npmcli/template-oss": "4.11.3",
4343
"benchmark": "^2.1.4",
4444
"chalk": "^4.1.0",
4545
"minify-registry-metadata": "^3.0.0",
@@ -102,7 +102,7 @@
102102
},
103103
"templateOSS": {
104104
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
105-
"version": "4.11.1",
105+
"version": "4.11.3",
106106
"content": "../../scripts/template-oss/index.js"
107107
}
108108
}

workspaces/config/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
},
3434
"devDependencies": {
3535
"@npmcli/eslint-config": "^4.0.0",
36-
"@npmcli/template-oss": "4.11.1",
36+
"@npmcli/template-oss": "4.11.3",
3737
"tap": "^16.3.2"
3838
},
3939
"dependencies": {
@@ -50,6 +50,6 @@
5050
},
5151
"templateOSS": {
5252
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
53-
"version": "4.11.1"
53+
"version": "4.11.3"
5454
}
5555
}

workspaces/libnpmaccess/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"devDependencies": {
1818
"@npmcli/eslint-config": "^4.0.0",
1919
"@npmcli/mock-registry": "^1.0.0",
20-
"@npmcli/template-oss": "4.11.1",
20+
"@npmcli/template-oss": "4.11.3",
2121
"nock": "^13.2.4",
2222
"tap": "^16.3.2"
2323
},
@@ -41,7 +41,7 @@
4141
],
4242
"templateOSS": {
4343
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
44-
"version": "4.11.1",
44+
"version": "4.11.3",
4545
"content": "../../scripts/template-oss/index.js"
4646
},
4747
"tap": {

workspaces/libnpmdiff/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
},
4444
"devDependencies": {
4545
"@npmcli/eslint-config": "^4.0.0",
46-
"@npmcli/template-oss": "4.11.1",
46+
"@npmcli/template-oss": "4.11.3",
4747
"tap": "^16.3.2"
4848
},
4949
"dependencies": {
@@ -59,7 +59,7 @@
5959
},
6060
"templateOSS": {
6161
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
62-
"version": "4.11.1",
62+
"version": "4.11.3",
6363
"content": "../../scripts/template-oss/index.js"
6464
},
6565
"tap": {

0 commit comments

Comments
 (0)