Skip to content
This repository was archived by the owner on Jan 11, 2023. It is now read-only.

Commit f7dd862

Browse files
renovate[bot]renovate-botehmicky
authoredFeb 7, 2022
fix(deps): update dependency read-pkg-up to v9 (#703)
* fix(deps): update dependency read-pkg-up to v9 * chore: fix new version of `read-pkg-up` Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: ehmicky <ehmicky@users.noreply.github.com> Co-authored-by: ehmicky <ehmicky@gmail.com>
1 parent 9ec31b1 commit f7dd862

File tree

3 files changed

+552
-97
lines changed

3 files changed

+552
-97
lines changed
 

‎package-lock.json

+549-94
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
"locate-path": "^6.0.0",
8080
"p-filter": "^3.0.0",
8181
"p-locate": "^6.0.0",
82-
"read-pkg-up": "^7.0.1",
82+
"read-pkg-up": "^9.0.0",
8383
"semver": "^7.3.4"
8484
},
8585
"devDependencies": {

‎src/context.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ import { cwd, version } from 'process'
22

33
import isPlainObj from 'is-plain-obj'
44
import locatePath from 'locate-path'
5-
import readPkgUp from 'read-pkg-up'
5+
import { readPackageUp } from 'read-pkg-up'
66

77
const getPackageJson = async (projectDir) => {
88
try {
9-
const result = await readPkgUp({ cwd: projectDir, normalize: false })
9+
const result = await readPackageUp({ cwd: projectDir, normalize: false })
1010
if (result === undefined) {
1111
return {}
1212
}

0 commit comments

Comments
 (0)
This repository has been archived.