Skip to content

Commit

Permalink
Target node v6-v10 instead of v4-v8
Browse files Browse the repository at this point in the history
Node v4 reached its end of life a few days ago. Builds have been failing
for a while on that version anyway, and it's time to move on.

https://medium.com/the-node-js-collection/april-2018-release-updates-from-the-node-js-project-71687e1f7742
  • Loading branch information
trotzig committed May 2, 2018
1 parent c181d61 commit 7f57dd7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .babelrc
@@ -1,7 +1,7 @@
{
"presets": [["airbnb", {
"targets": {
"node": 4
"node": 6
}
}]],
"plugins": [
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
@@ -1,11 +1,11 @@
language: node_js
sudo: false
node_js:
- "4"
- "5"
- "6"
- "7"
- "8"
- "10"

before_script:
- npm install -g codeclimate-test-reporter
Expand Down

0 comments on commit 7f57dd7

Please sign in to comment.