-
-
Notifications
You must be signed in to change notification settings - Fork 291
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
chore: remove unmet peer dependencies #5469
Conversation
@@ -84,9 +84,6 @@ | |||
"ajv": "^8.12.0", | |||
"fastify": "^4.15.0" | |||
}, | |||
"peerDependencies": { | |||
"fastify": "^4.15.0" |
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.
only types are use in this package, there is a warning because validator package does not install fastify and neither should it, as it has to be browser compatible
@@ -157,9 +157,6 @@ | |||
"varint": "^6.0.0", | |||
"xxhash-wasm": "1.0.2" | |||
}, | |||
"peerDependencies": { | |||
"c-kzg": "^1.0.7" |
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.
c-kzg is already installed as dependency, shouldn't make a difference if this line is removed
lodestar/packages/beacon-node/package.json
Line 136 in ff64d4b
"c-kzg": "^1.0.9", |
Performance Report✔️ no performance regression detected Full benchmark results
|
ff64d4b
to
83ac15b
Compare
@@ -69,7 +69,7 @@ | |||
"@lodestar/types": "^1.8.0" | |||
}, | |||
"peerDependencies": { | |||
"libp2p": "0.41.0" | |||
"libp2p": "~0.42.2" |
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.
This fixes the warning if beacon-node package is installed, however top-level install still shows a warning, not sure how to get rid of that, might be related to
Checked peer deps via check-peer-dependencies, looks mostly correct now
🎉 This PR is included in v1.9.0 🎉 |
Motivation
I dislike warnings
Description
Removes unmet peer dependencies