Skip to content

Commit 6e3bc32

Browse files
committed
[BREAKING CHANGE] Build: Drop Node 8 and older, require Node 10+
1 parent 5a4cae3 commit 6e3bc32

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
language: node_js
22
node_js:
3-
- '4' # LTS
4-
- '6' # LTS
5-
- '7' # Current
3+
- '10' # LTS
4+
- '12' # LTS
5+
- '14' # Current
66
script:
77
- "npm run build"
88
- "npm test"

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
"type": "git",
99
"url": "git+https://github.com/js-reporters/js-reporters.git"
1010
},
11+
"engines": {
12+
"node": ">=10"
13+
},
1114
"scripts": {
1215
"build": "rollup -c",
1316
"prepublish": "npm run build",

0 commit comments

Comments
 (0)