Skip to content

Commit 93e2186

Browse files
committed
deps: @npmcli/[email protected]
1 parent bf0ea00 commit 93e2186

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

node_modules/@npmcli/map-workspaces/lib/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ async function mapWorkspaces (opts = {}) {
134134
try {
135135
pkg = await pkgJson.normalize(path.join(opts.cwd, match))
136136
} catch (err) {
137-
if (err.code === 'ENOENT') {
137+
if (err.code === 'ENOENT' || err.code === 'ENOTDIR') {
138138
continue
139139
} else {
140140
throw err

node_modules/@npmcli/map-workspaces/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@npmcli/map-workspaces",
3-
"version": "4.0.1",
3+
"version": "4.0.2",
44
"main": "lib/index.js",
55
"files": [
66
"bin/",
@@ -44,7 +44,7 @@
4444
},
4545
"devDependencies": {
4646
"@npmcli/eslint-config": "^5.0.0",
47-
"@npmcli/template-oss": "4.23.3",
47+
"@npmcli/template-oss": "4.23.4",
4848
"tap": "^16.0.1"
4949
},
5050
"dependencies": {
@@ -55,7 +55,7 @@
5555
},
5656
"templateOSS": {
5757
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
58-
"version": "4.23.3",
58+
"version": "4.23.4",
5959
"publish": "true"
6060
}
6161
}

package-lock.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
"@npmcli/arborist": "^8.0.0",
9191
"@npmcli/config": "^9.0.0",
9292
"@npmcli/fs": "^4.0.0",
93-
"@npmcli/map-workspaces": "^4.0.1",
93+
"@npmcli/map-workspaces": "^4.0.2",
9494
"@npmcli/package-json": "^6.1.0",
9595
"@npmcli/promise-spawn": "^8.0.2",
9696
"@npmcli/redact": "^3.0.0",
@@ -1655,9 +1655,9 @@
16551655
}
16561656
},
16571657
"node_modules/@npmcli/map-workspaces": {
1658-
"version": "4.0.1",
1659-
"resolved": "https://registry.npmjs.org/@npmcli/map-workspaces/-/map-workspaces-4.0.1.tgz",
1660-
"integrity": "sha512-g5H8ljH7Z+4T1ASsfcL09gZl4YGw6M4GbjzPt6HgE+pCRSKC4nlNc4nY75zshi88eEHcdoh3Q8XgWFkGKoVOPw==",
1658+
"version": "4.0.2",
1659+
"resolved": "https://registry.npmjs.org/@npmcli/map-workspaces/-/map-workspaces-4.0.2.tgz",
1660+
"integrity": "sha512-mnuMuibEbkaBTYj9HQ3dMe6L0ylYW+s/gfz7tBDMFY/la0w9Kf44P9aLn4/+/t3aTR3YUHKoT6XQL9rlicIe3Q==",
16611661
"inBundle": true,
16621662
"license": "ISC",
16631663
"dependencies": {

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"@npmcli/arborist": "^8.0.0",
5656
"@npmcli/config": "^9.0.0",
5757
"@npmcli/fs": "^4.0.0",
58-
"@npmcli/map-workspaces": "^4.0.1",
58+
"@npmcli/map-workspaces": "^4.0.2",
5959
"@npmcli/package-json": "^6.1.0",
6060
"@npmcli/promise-spawn": "^8.0.2",
6161
"@npmcli/redact": "^3.0.0",

0 commit comments

Comments
 (0)