Skip to content

Commit

Permalink
chore: drop node@6 support
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Minimum node version is now 8

closes #410
  • Loading branch information
G-Rath committed Oct 27, 2019
1 parent a7ba3e4 commit 2ce233c
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [6.x, 8.x, 10.x, 12.x, 13.x]
node-version: [8.x, 10.x, 12.x, 13.x]
runs-on: ubuntu-latest

steps:
Expand Down
1 change: 0 additions & 1 deletion .travis.yml
Expand Up @@ -3,7 +3,6 @@ node_js:
- 12
- 10
- 8
- 6
- node
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash
Expand Down
2 changes: 1 addition & 1 deletion babel.config.js
Expand Up @@ -5,6 +5,6 @@ module.exports = {
plugins: ['replace-ts-export-assignment'],
presets: [
'@babel/preset-typescript',
['@babel/preset-env', { targets: { node: 6 } }],
['@babel/preset-env', { targets: { node: 8 } }],
],
};
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -20,7 +20,7 @@
],
"main": "lib/",
"engines": {
"node": ">=6"
"node": ">=8"
},
"peerDependencies": {
"eslint": ">=5"
Expand Down

0 comments on commit 2ce233c

Please sign in to comment.