Skip to content

Commit

Permalink
fix chokidar update by removing support for nodejs 6
Browse files Browse the repository at this point in the history
and update build scripts
  • Loading branch information
tomap committed May 30, 2019
1 parent 20cb85a commit af521d3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ cache:
- node_modules

node_js:
- "6"
- "8"
- "10"
- "node"

script:
Expand Down
1 change: 1 addition & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ init:
# Test against these versions of Node.js.
environment:
matrix:
- nodejs_version: "8"
- nodejs_version: "LTS"
- nodejs_version: "Stable"

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,19 +29,19 @@
"license": "MIT",
"dependencies": {
"bluebird": "^3.5.1",
"chokidar": "^2.0.4",
"chokidar": "^3.0.0",
"escape-string-regexp": "^1.0.5",
"graceful-fs": "^4.1.11"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.9.0",
"eslint": "^5.16.0",
"eslint-config-hexo": "^3.0.0",
"iferr": "^1.0.2",
"istanbul": "^0.4.5",
"mocha": "^6.0.2"
},
"engines": {
"node": ">=6.9.0"
"node": ">=8"
}
}

0 comments on commit af521d3

Please sign in to comment.