-
Notifications
You must be signed in to change notification settings - Fork 237
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
Plugin is preventing upgrades to @typescript-eslint
packages
#1398
Comments
As a workaround (not a solution) you can temporarily override the peer dependency in the {
// ...
"devDependencies": {
// ...
"@typescript-eslint/eslint-plugin": "^6.0.0",
"eslint-plugin-jest": "^27.2.2",
// ...
},
"overrides": {
"eslint-plugin-jest": {
"@typescript-eslint/eslint-plugin": "$@typescript-eslint/eslint-plugin"
}
}
} |
Ah, didn't know they'd released a v6. Fix incoming 🙂 |
Hah, we got #1397 😅 Missed it amongst my other notifications... |
They've completely broken types for projects (like this) that doesn't use Can start by just expanding the peer dep, tho |
🎉 This issue has been resolved in version 27.2.3 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Hi,
due to having a dependencies on
@typescript-eslint/parser
,@typescript-eslint/eslint-plugin
and@typescript-eslint/utils
at major version 5, it is not straightforward to upgrade those packages to version 6 in projects that also requireeslint-plugin-jest
.This is
npm
output after bumping versions of@typescript-eslint
packages in our projectsThere is already a renovate PR opened to upgrade #1397
The text was updated successfully, but these errors were encountered: