Skip to content

Commit 64601cd

Browse files
committed
deps: @npmcli/[email protected]
1 parent 0e23c00 commit 64601cd

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

node_modules/@npmcli/promise-spawn/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ const spawnWithShell = (cmd, args, opts, extra) => {
7070
// ahead of time so that we can escape arguments properly. we don't need coverage here.
7171
if (command === true) {
7272
// istanbul ignore next
73-
command = process.platform === 'win32' ? process.env.ComSpec : 'sh'
73+
command = process.platform === 'win32' ? (process.env.ComSpec || 'cmd.exe') : 'sh'
7474
}
7575

7676
const options = { ...opts, shell: false }

node_modules/@npmcli/promise-spawn/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@npmcli/promise-spawn",
3-
"version": "8.0.2",
3+
"version": "8.0.3",
44
"files": [
55
"bin/",
66
"lib/"
@@ -33,7 +33,7 @@
3333
},
3434
"devDependencies": {
3535
"@npmcli/eslint-config": "^5.0.0",
36-
"@npmcli/template-oss": "4.23.4",
36+
"@npmcli/template-oss": "4.25.0",
3737
"spawk": "^1.7.1",
3838
"tap": "^16.0.1"
3939
},
@@ -42,7 +42,7 @@
4242
},
4343
"templateOSS": {
4444
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
45-
"version": "4.23.4",
45+
"version": "4.25.0",
4646
"publish": true
4747
},
4848
"dependencies": {

package-lock.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
"@npmcli/fs": "^4.0.0",
9393
"@npmcli/map-workspaces": "^4.0.2",
9494
"@npmcli/package-json": "^6.2.0",
95-
"@npmcli/promise-spawn": "^8.0.2",
95+
"@npmcli/promise-spawn": "^8.0.3",
9696
"@npmcli/redact": "^3.2.2",
9797
"@npmcli/run-script": "^9.1.0",
9898
"@sigstore/tuf": "^3.1.1",
@@ -1840,9 +1840,9 @@
18401840
}
18411841
},
18421842
"node_modules/@npmcli/promise-spawn": {
1843-
"version": "8.0.2",
1844-
"resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-8.0.2.tgz",
1845-
"integrity": "sha512-/bNJhjc+o6qL+Dwz/bqfTQClkEO5nTQ1ZEcdCkAQjhkZMHIh22LPG7fNh1enJP1NKWDqYiiABnjFCY7E0zHYtQ==",
1843+
"version": "8.0.3",
1844+
"resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-8.0.3.tgz",
1845+
"integrity": "sha512-Yb00SWaL4F8w+K8YGhQ55+xE4RUNdMHV43WZGsiTM92gS+lC0mGsn7I4hLug7pbao035S6bj3Y3w0cUNGLfmkg==",
18461846
"inBundle": true,
18471847
"license": "ISC",
18481848
"dependencies": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"@npmcli/fs": "^4.0.0",
5858
"@npmcli/map-workspaces": "^4.0.2",
5959
"@npmcli/package-json": "^6.2.0",
60-
"@npmcli/promise-spawn": "^8.0.2",
60+
"@npmcli/promise-spawn": "^8.0.3",
6161
"@npmcli/redact": "^3.2.2",
6262
"@npmcli/run-script": "^9.1.0",
6363
"@sigstore/tuf": "^3.1.1",

0 commit comments

Comments
 (0)