升级依赖版本

This commit is contained in:
wy373226722 2017-04-07 11:54:19 +08:00
parent 1be5c8c23b
commit 9127b23c1b
2 changed files with 18 additions and 3 deletions

View File

@ -474,6 +474,19 @@ request.post('/api').form({key:'value'}), function(err,httpResponse,body){ /* ..
更新说明 更新说明
-------- --------
*v0.1 2017年04月07日11:46:02*
1. 升级koa为2.2.0版本。
2. 升级了以下依赖版本到“建议版本”:
```
依赖项 原版本 建议版本 最新版本 项目
eslint 3.18.0 3.19.0 3.19.0 koa2-API-scaffold
eslint-plugin-standard 2.1.1 2.3.1 3.0.1 koa2-API-scaffold
koa-router 7.1.0 7.1.1 7.1.1 koa2-API-scaffold
promise-mysql 3.0.0 3.0.1 3.0.1 koa2-API-scaffold
```
*v0.0.9_1 2017年03月30日15:51:03* *v0.0.9_1 2017年03月30日15:51:03*
1. 完善了gulpfile.js不是重要的更新。 1. 完善了gulpfile.js不是重要的更新。

View File

@ -10,15 +10,17 @@
"production": "node dist/app.js" "production": "node dist/app.js"
}, },
"dependencies": { "dependencies": {
"koa": "^2.0.0", "eslint": "^3.19.0",
"eslint-plugin-standard": "^2.3.1",
"koa": "^2.2.0",
"koa-body": "^2.0.0", "koa-body": "^2.0.0",
"koa-compose": "^3.2.1", "koa-compose": "^3.2.1",
"koa-router": "^7.0.1", "koa-router": "^7.1.1",
"koa-session2": "^1.0.8", "koa-session2": "^1.0.8",
"koa-static2": "^0.1.8", "koa-static2": "^0.1.8",
"mysql": "^2.12.0", "mysql": "^2.12.0",
"nodemailer": "^2.7.2", "nodemailer": "^2.7.2",
"promise-mysql": "^3.0.0", "promise-mysql": "^3.0.1",
"require-directory": "^2.1.1", "require-directory": "^2.1.1",
"sequelize": "^3.29.0" "sequelize": "^3.29.0"
}, },