-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Remove node6 support, add node12 to build #1397
Conversation
+1 |
@jsmylnycky maybe we could drop support to Node 8 also, what do you think? |
@@ -1,9 +1,9 @@ | |||
sudo: false | |||
language: node_js | |||
node_js: | |||
- "6" | |||
- "8" |
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.
I'd remove support to Node 8 also
@@ -35,7 +35,7 @@ | |||
"version": "auto-changelog -p && git add CHANGELOG.md" | |||
}, | |||
"engines": { | |||
"node": ">=6.0.0" | |||
"node": ">=8.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.
I'd suggest to change it to `>=10.0.0"
just curious why this wasn't a major semver change? Seems to me that dropping support for two major versions of node would be considered a breaking change. |
No description provided.