Skip to content

Commit 2ce233c

Browse files
committed
chore: drop node@6 support
BREAKING CHANGE: Minimum node version is now 8 closes #410
1 parent a7ba3e4 commit 2ce233c

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

.github/workflows/nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
node-version: [6.x, 8.x, 10.x, 12.x, 13.x]
19+
node-version: [8.x, 10.x, 12.x, 13.x]
2020
runs-on: ubuntu-latest
2121

2222
steps:

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ node_js:
33
- 12
44
- 10
55
- 8
6-
- 6
76
- node
87
before_install:
98
- curl -o- -L https://yarnpkg.com/install.sh | bash

babel.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ module.exports = {
55
plugins: ['replace-ts-export-assignment'],
66
presets: [
77
'@babel/preset-typescript',
8-
['@babel/preset-env', { targets: { node: 6 } }],
8+
['@babel/preset-env', { targets: { node: 8 } }],
99
],
1010
};

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
],
2121
"main": "lib/",
2222
"engines": {
23-
"node": ">=6"
23+
"node": ">=8"
2424
},
2525
"peerDependencies": {
2626
"eslint": ">=5"

0 commit comments

Comments
 (0)