-
-
Notifications
You must be signed in to change notification settings - Fork 43
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
Breaking: drop node v10/v13/v15 (refs eslint/eslint#14023) #37
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.
It looks like we have a small lint issue.
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.
LGTM 🚀
.github/workflows/ci.yml
Outdated
@@ -22,7 +22,7 @@ jobs: | |||
strategy: | |||
matrix: | |||
os: [ubuntu-latest] | |||
node: [16.x, 15.x, 14.x, 13.x, 12.x, 10.x, "10.12.0"] | |||
node: [16.x, 14.x, 12.x, "12.22.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.
node: [16.x, 14.x, 12.x, "12.22.0"] | |
node: [16.x, 14.x, "14.17.0", 12.x, "12.22.0"] |
package.json
Outdated
@@ -58,6 +58,6 @@ | |||
"strip-json-comments": "^3.1.1" | |||
}, | |||
"engines": { | |||
"node": "^10.12.0 || >=12.0.0" | |||
"node": "^12.22.0 || ^14.17.0 || >=16.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.
beware the >=, that will force v17 etc whether you intend it or not
Let’s make sure we sync these changes with the final changes in the eslint repo |
No description provided.