Skip to content

Commit

Permalink
test: add node 8 (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
fengmk2 committed Jun 10, 2017
1 parent e2219df commit b208c7e
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 8 deletions.
24 changes: 24 additions & 0 deletions .autod.conf
@@ -0,0 +1,24 @@
'ues strict';

module.exports = {
write: true,
prefix: '^',
devprefix: '^',
exclude: [
'test/fixtures',
],
dep: [
],
devdep: [
'autod',
'eslint-config-egg',
'eslint',
'egg-bin',
'egg-ci',
],
keep: [
],
semver: [
'egg-bin@1',
],
};
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -5,6 +5,7 @@ node_js:
- '4'
- '6'
- '7'
- '8'
install:
- npm i npminstall && npminstall
script:
Expand Down
1 change: 1 addition & 0 deletions appveyor.yml
Expand Up @@ -4,6 +4,7 @@ environment:
- nodejs_version: '4'
- nodejs_version: '6'
- nodejs_version: '7'
- nodejs_version: '8'

install:
- ps: Install-Product node $env:nodejs_version
Expand Down
18 changes: 10 additions & 8 deletions package.json
Expand Up @@ -13,7 +13,8 @@
"test": "egg-bin test",
"cov": "egg-bin cov",
"ci": "npm run lint && npm run cov",
"lint": "eslint lib test index.js"
"lint": "eslint lib test index.js",
"autod": "autod"
},
"repository": {
"type": "git",
Expand All @@ -30,20 +31,21 @@
"agentkeepalive"
],
"dependencies": {
"humanize-ms": "^1.2.0"
"humanize-ms": "^1.2.1"
},
"devDependencies": {
"egg-bin": "^1.9.1",
"egg-ci": "^1.1.0",
"eslint": "^3.12.2",
"eslint-config-egg": "^3.2.0",
"pedding": "1"
"autod": "^2.8.0",
"egg-bin": "^1.10.3",
"egg-ci": "^1.7.0",
"eslint": "^3.19.0",
"eslint-config-egg": "^4.2.0",
"pedding": "^1.1.0"
},
"engines": {
"node": ">= 4.0.0"
},
"ci": {
"version": "4.3.2, 4, 6, 7"
"version": "4.3.2, 4, 6, 7, 8"
},
"author": "fengmk2 <fengmk2@gmail.com> (https://fengmk2.com)",
"license": "MIT"
Expand Down

0 comments on commit b208c7e

Please sign in to comment.