-
-
Notifications
You must be signed in to change notification settings - Fork 21
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
feat: add fallback to npm registry API in fetchPeerDependencies #155
base: main
Are you sure you want to change the base?
Conversation
I am not exactly sure who to ask for a review here, maybe @mdjermanovic? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💯 LGTM. Would like another review before merging.
@@ -79,8 +96,31 @@ function fetchPeerDependencies(packageName) { | |||
|
|||
if (error && error.code === "ENOENT") { | |||
|
|||
// TODO: should throw an error instead of returning null | |||
return null; | |||
// Fallback to using the npm registry API directly when npm is not available. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should first check if npm is available via npm --version
command and if it's available use npm show --json
otherwise use fetch API. As per the current implementation, it will only use fetch if the error code is ENOENT
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since npm --version
throws ENOENT
when npm
is missing, I don't see the need for an additional check. Could you clarify more?
This PR enhances the
fetchPeerDependencies
function by adding a fallback mechanism. Ifnpm
is unavailable, the function will now query the npm registry API directly to fetch peer dependencies.Closes #84