-
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
fix(package): add @octokit/core
as peer dependency
#124
fix(package): add @octokit/core
as peer dependency
#124
Conversation
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.
Thanks 👍🏼
🎉 This PR is included in version 1.0.1 🎉 The release is available on: Your semantic-release bot 📦🚀 |
I was upgrading yarn packages today and got this warning: warning "lerna > @lerna/version > @lerna/github-client > @octokit/rest > @octokit/[email protected]" has unmet peer dependency "@octokit/core@>=3". |
what |
yea - lerna 3.22.1 - https://github.com/lerna/lerna/blob/master/package-lock.json (Thanks for responding- btw!) |
Ah - sorry: https://github.com/lerna/lerna/blob/master/utils/github-client/package.json My repo doesn't have any direct dependencies on octokit/core. It's getting brought in from lerna. I do not see a direct reference to octokit/core in their package.json or packaage-lock.json in the root. |
I see. So the problem here is that I think you can probably suppress the warning by installing |
Seems to be an issue on lerna's end then, wouldn't you say? The warning isn't that big of a deal to me. I mistakenly thought it was blocking me, though turned out to be something else. |
I'd say the warning is legit, but in this case safe to ignore. It's only about types anyway, it won't affect your code in production. |
fixes #77