-
-
Notifications
You must be signed in to change notification settings - Fork 306
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: fix yarn install warnings #5711
Conversation
@@ -67,6 +67,7 @@ | |||
"karma-spec-reporter": "^0.0.36", | |||
"karma-webpack": "^5.0.0", | |||
"lerna": "^6.6.1", | |||
"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 removes the following warning: warning " > @lodestar/reqresp@1.9.0" has unmet peer dependency "libp2p@~0.42.2".
Not sure why this works but picked it up here: yarnpkg/yarn#5347 (comment)
@@ -85,5 +86,8 @@ | |||
"typescript": "^5.0.3", | |||
"typescript-docs-verifier": "^2.4.0", | |||
"webpack": "^5.77.0" | |||
}, | |||
"resolutions": { | |||
"dns-over-http-resolver": "^2.1.1" |
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.
Need to add custom resolution for now until the dependency tree is updated
warning "workspace-aggregator-7fe22546-d232-4ae9-9884-df7a13280865 > @lodestar/beacon-node > @multiformats/multiaddr > dns-over-http-resolver > native-fetch@4.0.2" has unmet peer dependency "undici@*".
This PR fixes the warnings and is included in 2.1.1
@@ -97,6 +97,7 @@ | |||
"@chainsafe/as-chacha20poly1305": "^0.1.0", | |||
"@chainsafe/as-sha256": "^0.3.1", | |||
"@chainsafe/bls": "7.1.1", | |||
"@chainsafe/blst": "^0.2.9", |
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 was just missed I guess, gets rid of warning "workspace-aggregator-7fe22546-d232-4ae9-9884-df7a13280865 > @lodestar/beacon-node > @chainsafe/bls@7.1.1" has unmet peer dependency "@chainsafe/blst@^0.2.4".
Performance Report✔️ no performance regression detected Full benchmark results
|
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.
Appreciate the comments
🎉 This PR is included in v1.10.0 🎉 |
Motivation
No warnings when running
yarn install
and be able to merge
Description
Fixes yarn install warnings
Steps to reproduce
Clean node_modules
Reinstall
Output