Skip to content

Commit 870a17e

Browse files
committed
Set the minimal supported node version to 10
1 parent f4b4057 commit 870a17e

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

.travis.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
sudo: false
21
language: node_js
32
cache:
43
directories:
54
- node_modules
65
notifications:
76
email: true
87
node_js:
9-
- "node"
8+
- 14
9+
- 13
10+
- 12
11+
- 10
1012
script:
1113
- npm test
1214
after_script:

appveyor.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
environment:
22
matrix:
3-
- nodejs_version: 8
4-
- nodejs_version: 6
3+
- nodejs_version: 14
4+
- nodejs_version: 13
5+
- nodejs_version: 12
6+
- nodejs_version: 10
57
install:
68
- ps: Install-Product node $env:nodejs_version
79
- set CI=true
@@ -18,4 +20,4 @@ test_script:
1820
after_test:
1921
- npm run codecov
2022
cache:
21-
- '%APPDATA%\npm-cache'
23+
- '%APPDATA%\npm-cache'

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"lib": "lib"
4343
},
4444
"engines": {
45-
"node": ">=4.0.0"
45+
"node": ">=10.0.0"
4646
},
4747
"homepage": "https://github.com/declandewet/common-tags",
4848
"keywords": [

0 commit comments

Comments
 (0)