-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
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
Rework dependencies #12190
Rework dependencies #12190
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 |
---|---|---|
|
@@ -25,7 +25,6 @@ | |
} | ||
}, | ||
"dependencies": { | ||
"@babel/core": "^7.1.0", | ||
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.
https://github.com/yarnpkg/berry/runs/4708870979?check_suite_focus=true#step:4:45 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. hmm, surprised our pnp test didn't pick this up 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. there's also no peer dependency warning within this repo for the missing peer 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. that said, we can add it back now for now. The plan is to not ship 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. It doesn't catch it because it's declared in the 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. cool! We'll update to v3 once we drop node 10 👍 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.
Yeah, we should fix that. |
||
"@jest/test-sequencer": "^27.4.5", | ||
"@jest/types": "^27.4.2", | ||
"babel-jest": "^27.4.5", | ||
|
@@ -49,7 +48,6 @@ | |
"slash": "^3.0.0" | ||
}, | ||
"devDependencies": { | ||
"@types/babel__core": "^7.0.4", | ||
"@types/glob": "^7.1.1", | ||
"@types/graceful-fs": "^4.1.3", | ||
"@types/micromatch": "^4.0.1", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,6 @@ | |
}, | ||
"author": "James Kyle <[email protected]>", | ||
"dependencies": { | ||
"@jest/types": "^27.4.2", | ||
"ansi-regex": "^5.0.1", | ||
"ansi-styles": "^5.0.0", | ||
"react-is": "^17.0.1" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,14 +14,15 @@ | |
}, | ||
"dependencies": { | ||
"@jest/types": "^27.4.2", | ||
"@types/jest": "*", | ||
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. Most probably |
||
"@types/node": "*", | ||
"@types/semver": "^7.1.0", | ||
"ansi-regex": "^5.0.1", | ||
"ansi-styles": "^5.0.0", | ||
"pretty-format": "^27.4.2", | ||
"semver": "^7.3.2" | ||
}, | ||
"devDependencies": { | ||
"@types/semver": "^7.1.0" | ||
}, | ||
"engines": { | ||
"node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.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.
Right. Currently
mlh-tsd
is not necessary here.