Skip to content

Commit 22d44e8

Browse files
committedJun 19, 2023
deps: read-package-json@6.0.4
1 parent fdd02fd commit 22d44e8

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed
 

‎node_modules/read-package-json/lib/read-json.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ function bins (file, data, cb) {
352352
return cb(null, data)
353353
}
354354

355-
m = path.resolve(path.dirname(file), m)
355+
m = path.resolve(path.dirname(file), path.join('.', path.join('/', m)))
356356
glob('**', { cwd: m })
357357
.then(binsGlob => bins_(file, data, binsGlob, cb))
358358
.catch(er => cb(er))

‎node_modules/read-package-json/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "read-package-json",
3-
"version": "6.0.3",
3+
"version": "6.0.4",
44
"author": "GitHub Inc.",
55
"description": "The thing npm uses to read package.json files with semantics and defaults and validation",
66
"repository": {
@@ -30,7 +30,7 @@
3030
},
3131
"devDependencies": {
3232
"@npmcli/eslint-config": "^4.0.0",
33-
"@npmcli/template-oss": "4.14.1",
33+
"@npmcli/template-oss": "4.15.1",
3434
"tap": "^16.0.1"
3535
},
3636
"license": "ISC",
@@ -42,18 +42,18 @@
4242
"node": "^14.17.0 || ^16.13.0 || >=18.0.0"
4343
},
4444
"tap": {
45-
"branches": 68,
46-
"functions": 74,
47-
"lines": 74,
48-
"statements": 74,
45+
"branches": 73,
46+
"functions": 77,
47+
"lines": 77,
48+
"statements": 77,
4949
"nyc-arg": [
5050
"--exclude",
5151
"tap-snapshots/**"
5252
]
5353
},
5454
"templateOSS": {
5555
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
56-
"version": "4.14.1",
56+
"version": "4.15.1",
5757
"publish": "true"
5858
}
5959
}

‎package-lock.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -10614,9 +10614,9 @@
1061410614
}
1061510615
},
1061610616
"node_modules/read-package-json": {
10617-
"version": "6.0.3",
10618-
"resolved": "https://registry.npmjs.org/read-package-json/-/read-package-json-6.0.3.tgz",
10619-
"integrity": "sha512-4QbpReW4kxFgeBQ0vPAqh2y8sXEB3D4t3jsXbJKIhBiF80KT6XRo45reqwtftju5J6ru1ax06A2Gb/wM1qCOEQ==",
10617+
"version": "6.0.4",
10618+
"resolved": "https://registry.npmjs.org/read-package-json/-/read-package-json-6.0.4.tgz",
10619+
"integrity": "sha512-AEtWXYfopBj2z5N5PbkAOeNHRPUg5q+Nen7QLxV8M2zJq1ym6/lCz3fYNTCXe19puu2d06jfHhrP7v/S2PtMMw==",
1062010620
"inBundle": true,
1062110621
"dependencies": {
1062210622
"glob": "^10.2.2",

0 commit comments

Comments
 (0)
Please sign in to comment.