Skip to content

Commit 24b2ec4

Browse files
committed
deps: @npmcli/[email protected]
1 parent 4b8046e commit 24b2ec4

File tree

5 files changed

+12
-11
lines changed

5 files changed

+12
-11
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ const open = (_args, opts = {}, extra = {}) => {
131131
let platform = process.platform
132132
// process.platform === 'linux' may actually indicate WSL, if that's the case
133133
// we want to treat things as win32 anyway so the host can open the argument
134-
if (platform === 'linux' && os.release().includes('Microsoft')) {
134+
if (platform === 'linux' && os.release().toLowerCase().includes('microsoft')) {
135135
platform = 'win32'
136136
}
137137

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@npmcli/promise-spawn",
3-
"version": "6.0.1",
3+
"version": "6.0.2",
44
"files": [
55
"bin/",
66
"lib/"
@@ -32,8 +32,8 @@
3232
},
3333
"devDependencies": {
3434
"@npmcli/eslint-config": "^4.0.0",
35-
"@npmcli/template-oss": "4.8.0",
36-
"minipass": "^3.1.1",
35+
"@npmcli/template-oss": "4.11.0",
36+
"minipass": "^4.0.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.8.0"
45+
"version": "4.11.0"
4646
},
4747
"dependencies": {
4848
"which": "^3.0.0"

package-lock.json

+5-4
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@
162162
"@npmcli/fs": "^3.1.0",
163163
"@npmcli/git": "^4.0.1",
164164
"@npmcli/mock-registry": "^1.0.0",
165-
"@npmcli/promise-spawn": "^6.0.1",
165+
"@npmcli/promise-spawn": "^6.0.2",
166166
"@npmcli/template-oss": "4.11.3",
167167
"licensee": "^10.0.0",
168168
"nock": "^13.2.4",
@@ -2223,9 +2223,10 @@
22232223
}
22242224
},
22252225
"node_modules/@npmcli/promise-spawn": {
2226-
"version": "6.0.1",
2226+
"version": "6.0.2",
2227+
"resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-6.0.2.tgz",
2228+
"integrity": "sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==",
22272229
"inBundle": true,
2228-
"license": "ISC",
22292230
"dependencies": {
22302231
"which": "^3.0.0"
22312232
},
@@ -14361,7 +14362,7 @@
1436114362
"devDependencies": {
1436214363
"@npmcli/eslint-config": "^4.0.0",
1436314364
"@npmcli/mock-registry": "^1.0.0",
14364-
"@npmcli/promise-spawn": "^6.0.1",
14365+
"@npmcli/promise-spawn": "^6.0.2",
1436514366
"@npmcli/template-oss": "4.11.3",
1436614367
"http-proxy": "^1.18.1",
1436714368
"just-extend": "^6.1.1",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@
195195
"@npmcli/fs": "^3.1.0",
196196
"@npmcli/git": "^4.0.1",
197197
"@npmcli/mock-registry": "^1.0.0",
198-
"@npmcli/promise-spawn": "^6.0.1",
198+
"@npmcli/promise-spawn": "^6.0.2",
199199
"@npmcli/template-oss": "4.11.3",
200200
"licensee": "^10.0.0",
201201
"nock": "^13.2.4",

smoke-tests/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"devDependencies": {
2121
"@npmcli/eslint-config": "^4.0.0",
2222
"@npmcli/mock-registry": "^1.0.0",
23-
"@npmcli/promise-spawn": "^6.0.1",
23+
"@npmcli/promise-spawn": "^6.0.2",
2424
"@npmcli/template-oss": "4.11.3",
2525
"http-proxy": "^1.18.1",
2626
"just-extend": "^6.1.1",

0 commit comments

Comments
 (0)