-
Notifications
You must be signed in to change notification settings - Fork 144
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
Fixup dependency mess #1749
Fixup dependency mess #1749
Conversation
…inter into fixup-dependency-mess
@@ -62,6 +62,7 @@ | |||
"is-mergeable-object": "1.1.0", | |||
"isparta": "4.0.0", | |||
"jest": "22.0.4", | |||
"jest-cli": "22.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.
👍 it looks that is this explicit dependency on jest-cli that is fixing the issue
I think that we can remove the "jest" dependency above it, so that we don't need to keep them in sync when we upgrade jest (I tried locally and it worked fine).
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.
Hmm, that's actually true but given that jest
only has jest-cli
as a dependency we don't have to pin anything right now. Once they pin jest-cli
we can get rid of the explicit dependency.
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.
sounds good
Refs webpack/webpack-dev-server#1259 (comment)
Refs jestjs/jest#3793