-
-
Notifications
You must be signed in to change notification settings - Fork 318
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,6 +67,7 @@ | |
"karma-spec-reporter": "^0.0.36", | ||
"karma-webpack": "^5.0.0", | ||
"lerna": "^6.6.1", | ||
"libp2p": "0.42.2", | ||
"mocha": "^10.2.0", | ||
"node-gyp": "^9.3.1", | ||
"npm-run-all": "^4.1.5", | ||
|
@@ -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 commentThe 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
This PR fixes the warnings and is included in 2.1.1 |
||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 commentThe reason will be displayed to describe this comment to others. Learn more. This was just missed I guess, gets rid of |
||
"@chainsafe/discv5": "^3.0.0", | ||
"@chainsafe/libp2p-gossipsub": "^6.2.0", | ||
"@chainsafe/libp2p-noise": "^11.0.4", | ||
|
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)