Skip to content

Commit 571e1b9

Browse files
authoredJun 10, 2019
fix chokidar update by removing support for nodejs 6 (#34)
and update build scripts
1 parent 20cb85a commit 571e1b9

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed
 

‎.travis.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ cache:
88
- node_modules
99

1010
node_js:
11-
- "6"
11+
- "8"
12+
- "10"
1213
- "node"
1314

1415
script:

‎appveyor.yml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ init:
55
# Test against these versions of Node.js.
66
environment:
77
matrix:
8+
- nodejs_version: "8"
89
- nodejs_version: "LTS"
910
- nodejs_version: "Stable"
1011

‎package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,19 @@
2929
"license": "MIT",
3030
"dependencies": {
3131
"bluebird": "^3.5.1",
32-
"chokidar": "^2.0.4",
32+
"chokidar": "^3.0.0",
3333
"escape-string-regexp": "^1.0.5",
3434
"graceful-fs": "^4.1.11"
3535
},
3636
"devDependencies": {
3737
"chai": "^4.1.2",
38-
"eslint": "^5.9.0",
38+
"eslint": "^5.16.0",
3939
"eslint-config-hexo": "^3.0.0",
4040
"iferr": "^1.0.2",
4141
"istanbul": "^0.4.5",
4242
"mocha": "^6.0.2"
4343
},
4444
"engines": {
45-
"node": ">=6.9.0"
45+
"node": ">=8"
4646
}
4747
}

0 commit comments

Comments
 (0)
Please sign in to comment.