Skip to content

Commit

Permalink
deps: @npmcli/promise-spawn@6.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
fritzy committed Feb 1, 2023
1 parent 4b8046e commit 24b2ec4
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion node_modules/@npmcli/promise-spawn/lib/index.js
Expand Up @@ -131,7 +131,7 @@ const open = (_args, opts = {}, extra = {}) => {
let platform = process.platform
// process.platform === 'linux' may actually indicate WSL, if that's the case
// we want to treat things as win32 anyway so the host can open the argument
if (platform === 'linux' && os.release().includes('Microsoft')) {
if (platform === 'linux' && os.release().toLowerCase().includes('microsoft')) {
platform = 'win32'
}

Expand Down
8 changes: 4 additions & 4 deletions node_modules/@npmcli/promise-spawn/package.json
@@ -1,6 +1,6 @@
{
"name": "@npmcli/promise-spawn",
"version": "6.0.1",
"version": "6.0.2",
"files": [
"bin/",
"lib/"
Expand Down Expand Up @@ -32,8 +32,8 @@
},
"devDependencies": {
"@npmcli/eslint-config": "^4.0.0",
"@npmcli/template-oss": "4.8.0",
"minipass": "^3.1.1",
"@npmcli/template-oss": "4.11.0",
"minipass": "^4.0.0",
"spawk": "^1.7.1",
"tap": "^16.0.1"
},
Expand All @@ -42,7 +42,7 @@
},
"templateOSS": {
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
"version": "4.8.0"
"version": "4.11.0"
},
"dependencies": {
"which": "^3.0.0"
Expand Down
9 changes: 5 additions & 4 deletions package-lock.json
Expand Up @@ -162,7 +162,7 @@
"@npmcli/fs": "^3.1.0",
"@npmcli/git": "^4.0.1",
"@npmcli/mock-registry": "^1.0.0",
"@npmcli/promise-spawn": "^6.0.1",
"@npmcli/promise-spawn": "^6.0.2",
"@npmcli/template-oss": "4.11.3",
"licensee": "^10.0.0",
"nock": "^13.2.4",
Expand Down Expand Up @@ -2223,9 +2223,10 @@
}
},
"node_modules/@npmcli/promise-spawn": {
"version": "6.0.1",
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-6.0.2.tgz",
"integrity": "sha512-gGq0NJkIGSwdbUt4yhdF8ZrmkGKVz9vAdVzpOfnom+V8PLSmSOVhZwbNvZZS1EYcJN5hzzKBxmmVVAInM6HQLg==",
"inBundle": true,
"license": "ISC",
"dependencies": {
"which": "^3.0.0"
},
Expand Down Expand Up @@ -14361,7 +14362,7 @@
"devDependencies": {
"@npmcli/eslint-config": "^4.0.0",
"@npmcli/mock-registry": "^1.0.0",
"@npmcli/promise-spawn": "^6.0.1",
"@npmcli/promise-spawn": "^6.0.2",
"@npmcli/template-oss": "4.11.3",
"http-proxy": "^1.18.1",
"just-extend": "^6.1.1",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -195,7 +195,7 @@
"@npmcli/fs": "^3.1.0",
"@npmcli/git": "^4.0.1",
"@npmcli/mock-registry": "^1.0.0",
"@npmcli/promise-spawn": "^6.0.1",
"@npmcli/promise-spawn": "^6.0.2",
"@npmcli/template-oss": "4.11.3",
"licensee": "^10.0.0",
"nock": "^13.2.4",
Expand Down
2 changes: 1 addition & 1 deletion smoke-tests/package.json
Expand Up @@ -20,7 +20,7 @@
"devDependencies": {
"@npmcli/eslint-config": "^4.0.0",
"@npmcli/mock-registry": "^1.0.0",
"@npmcli/promise-spawn": "^6.0.1",
"@npmcli/promise-spawn": "^6.0.2",
"@npmcli/template-oss": "4.11.3",
"http-proxy": "^1.18.1",
"just-extend": "^6.1.1",
Expand Down

0 comments on commit 24b2ec4

Please sign in to comment.