Skip to content

Commit 3a42f20

Browse files
committed
feat: drop Node v4 support
BREAKING CHANGE: Node.js v4 is no longer supported. Next supported version is v6.
1 parent 9c586c5 commit 3a42f20

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.babelrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"@babel/preset-env",
99
{
1010
"targets": {
11-
"node": 4
11+
"node": 6
1212
}
1313
}
1414
]

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ language: node_js
22
node_js:
33
- node
44
- 8
5+
- 6
56
before_install:
67
- npm config set depth 0
78
notifications:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"semantic-release": "^15.13.3"
3131
},
3232
"engines": {
33-
"node": ">=4"
33+
"node": ">=6"
3434
},
3535
"husky": {
3636
"hooks": {

0 commit comments

Comments
 (0)