Skip to content

Commit 652ce96

Browse files
0x6bnodaguti
authored andcommitted
fix: support Node.js v4 (#101)
1 parent a7f1783 commit 652ce96

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.babelrc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44
"env",
55
{
66
"targets": {
7-
"node": 6
8-
}
7+
"node": 4
8+
},
9+
"exclude": ["babel-plugin-transform-regenerator"]
910
}
1011
]
1112
]

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
sudo: false
22
language: node_js
33
node_js:
4+
- 4
45
- 6
56
- 7
67
notification:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "4.1.2",
44
"description": "A textlint rule to check if all links are alive",
55
"engines": {
6-
"node": ">=6"
6+
"node": ">=4"
77
},
88
"main": "lib/no-dead-link.js",
99
"scripts": {

0 commit comments

Comments
 (0)