zenweb 4.4.0 → 4.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -117,3 +117,4 @@ npm run dev
|
|
|
117
117
|
- [grid](https://www.npmjs.com/package/@zenweb/grid) 统一表格(多用于后台)
|
|
118
118
|
- [upload](https://www.npmjs.com/package/@zenweb/upload) 文件上传支持
|
|
119
119
|
- [xmlBody](https://www.npmjs.com/package/@zenweb/xml-body) XML Body 解析
|
|
120
|
+
- [msgpack](https://www.npmjs.com/package/@zenweb/msgpack) MessagePack 输出
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zenweb",
|
|
3
3
|
"packageManager": "yarn@4.0.2",
|
|
4
|
-
"version": "4.4.
|
|
4
|
+
"version": "4.4.1",
|
|
5
5
|
"description": "Modular lightweight web framework based on Koa",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"typings": "./dist/index.d.ts",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"scripts": {
|
|
13
13
|
"vscode": "yarn dlx @yarnpkg/sdks vscode",
|
|
14
14
|
"build": "rimraf dist && tsc",
|
|
15
|
-
"
|
|
15
|
+
"prepack": "yarn run build",
|
|
16
16
|
"dev": "cd example && cross-env APP_NAME=testapp DEBUG=\\* NODE_ENV=development ts-node src"
|
|
17
17
|
},
|
|
18
18
|
"author": {
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@zenweb/log": "^4.1.5",
|
|
39
39
|
"@zenweb/messagecode": "^3.6.5",
|
|
40
40
|
"@zenweb/meta": "^4.0.0",
|
|
41
|
-
"@zenweb/result": "^3.
|
|
41
|
+
"@zenweb/result": "^3.14.0",
|
|
42
42
|
"@zenweb/router": "^3.3.5"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|