Skip to content

Commit

Permalink
chore: support node >= 10
Browse files Browse the repository at this point in the history
  • Loading branch information
mjeanroy committed Apr 5, 2020
1 parent 7b3af98 commit 339e5ff
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"@babel/preset-env", {
"modules": "cjs",
"targets": {
"node": "6"
"node": "10"
}
}
]
Expand All @@ -21,7 +21,7 @@
"@babel/preset-env", {
"modules": "false",
"targets": {
"node": "6"
"node": "10"
}
}
]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
strategy:
matrix:
os: [ windows-latest, ubuntu-latest ]
node: [ 6, 7, 8, 9, 10, 11, 12, 13 ]
node: [ 10, 11, 12, 13 ]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
Expand Down
4 changes: 0 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,6 @@

language: node_js
node_js:
- "6"
- "7"
- "8"
- "9"
- "10"
- "11"
- "12"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,6 @@
"tmp": "0.1.0"
},
"engines": {
"node": ">=6.0.0"
"node": ">=10.0.0"
}
}

0 comments on commit 339e5ff

Please sign in to comment.