-
-
Notifications
You must be signed in to change notification settings - Fork 405
Replace read-package-up
with find-up-simple
#2619
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
ccd40e5
replace read-package-up with empathic
beeequeue b2ad57a
move shared logic into own file, add caching
beeequeue 40583dd
fix property name
beeequeue 04ae35c
update tests
beeequeue 0cc10c0
use find-up-simple instead
beeequeue a0aab11
fix lint error
beeequeue fefe34f
update tests
beeequeue 92fbb2f
Update package-json.js
sindresorhus c1557d4
fix potential null property access
beeequeue 96635a1
cache missing pkg.json paths
beeequeue 5188d85
Simplify logic
fisker 7d9542f
Linting
fisker File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
import fs from 'node:fs'; | ||
import {findUpSync} from 'find-up-simple'; | ||
|
||
const directoryCache = new Map(); | ||
const dataCache = new Map(); | ||
|
||
/** | ||
Finds the closest package.json file to the given directory and returns its path and contents. | ||
|
||
Caches the result for future lookups. | ||
|
||
@param dirname {string} | ||
@return {{ path: string, packageJson: Record<string, unknown> } | undefined} | ||
*/ | ||
export function readPackageJson(dirname) { | ||
let packageJsonPath; | ||
if (directoryCache.has(dirname)) { | ||
packageJsonPath = directoryCache.get(dirname); | ||
} else { | ||
packageJsonPath = findUpSync('package.json', {cwd: dirname, type: 'file'}); | ||
directoryCache.set(dirname, packageJsonPath); | ||
} | ||
|
||
if (!packageJsonPath) { | ||
return; | ||
} | ||
|
||
let packageJson; | ||
if (dataCache.has(packageJsonPath)) { | ||
packageJson = dataCache.get(packageJsonPath); | ||
} else { | ||
try { | ||
packageJson = JSON.parse(fs.readFileSync(packageJsonPath)); | ||
dataCache.set(packageJsonPath, packageJson); | ||
} catch { | ||
// This can happen if package.json files have comments in them etc. | ||
return; | ||
} | ||
} | ||
|
||
return {path: packageJsonPath, packageJson}; | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.