Skip to content
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

Allow ESLint peer dependency to include v6 and v7 #113

Merged
merged 1 commit into from
Aug 31, 2020

Conversation

bmish
Copy link
Member

@bmish bmish commented Aug 31, 2020

ESLint v6 and v7 have been out for a while.

The upcoming NPM v7 will also automatically install missing peer dependencies and we don't want it to be be installing old versions of ESLint due to this bug.

Fixes #112.

@coveralls
Copy link

coveralls commented Aug 31, 2020

Coverage Status

Coverage remained the same at 100.0% when pulling 6ac4e34 on bmish:deps-peer-max into 4bb9eea on platinumazure:master.

package.json Outdated
@@ -33,7 +33,7 @@
"shelljs": "^0.8.4"
},
"peerDepencencies": {
"eslint": ">=4.15.0 <6.0.0"
"eslint": ">=4.15.0"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we specify <8.0.0 please? This is in case 8.0.0 has a breaking change for plugin consumers.

Also, it might be good to ensure the devDependency for ESLint is at latest, so we can use CI to make sure the plugin won't have problems. Thanks!

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed! Thanks for the explanation.

@bmish bmish changed the title Allow ESLint peer dependency to be above v6 Allow ESLint peer dependency to include v6 and v7 Aug 31, 2020
Copy link
Collaborator

@platinumazure platinumazure left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good, thanks!

@platinumazure platinumazure merged commit 2174dbc into qunitjs:master Aug 31, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

Increase eslint peer dependency range
3 participants