-
Notifications
You must be signed in to change notification settings - Fork 251
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
feat(node version): drop node 4 support #724
Conversation
BREAKING CHANGE: Node 4 is no longer supported.
.travis.yml
Outdated
@@ -1,8 +1,8 @@ | |||
language: node_js | |||
node_js: | |||
- node | |||
- '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.
How about we don't explicitly build for node 8? In most cases, our software will either not work on the latest version of node or the oldest version. Not something in between.
.travis/ci-release.jsh
Outdated
@@ -6,7 +6,7 @@ const exec = (command) => execSync(command, { stdio: [0, 1, 2] }); | |||
const releaseRequirements = { | |||
pullRequest: 'false', | |||
branch: 'release', | |||
nodeVersion: '6' | |||
nodeVersion: '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.
Why not release with node 6?
BREAKING CHANGE: Node 4 is no longer supported.