@modern-js/plugin-koa 2.0.0-beta.1 → 2.0.0-beta.2
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/CHANGELOG.md +36 -0
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
# @modern-js/plugin-koa
|
|
2
2
|
|
|
3
|
+
## 2.0.0-beta.2
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- dda38c9c3e: chore: v2
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 8d24bed25b: fix: compat Hook API in /server namespace
|
|
12
|
+
fix: 在 @modern-js/runtime/server 命名空间下兼容 Hook API
|
|
13
|
+
- 3bbea92b2a: feat: support Hook、Middleware new API
|
|
14
|
+
feat: 支持 Hook、Middleware 的新 API
|
|
15
|
+
- Updated dependencies [2344eb2]
|
|
16
|
+
- Updated dependencies [a2509bfbdb]
|
|
17
|
+
- Updated dependencies [92f0ead]
|
|
18
|
+
- Updated dependencies [edd1cfb1af]
|
|
19
|
+
- Updated dependencies [cc971eabfc]
|
|
20
|
+
- Updated dependencies [5b9049f2e9]
|
|
21
|
+
- Updated dependencies [6bda14ed71]
|
|
22
|
+
- Updated dependencies [92004d1]
|
|
23
|
+
- Updated dependencies [b8bbe036c7]
|
|
24
|
+
- Updated dependencies [40ed587]
|
|
25
|
+
- Updated dependencies [87c1ff8]
|
|
26
|
+
- Updated dependencies [d5a31df781]
|
|
27
|
+
- Updated dependencies [dda38c9c3e]
|
|
28
|
+
- Updated dependencies [102d32e4ba]
|
|
29
|
+
- Updated dependencies [8b8e1bb571]
|
|
30
|
+
- Updated dependencies [3bbea92b2a]
|
|
31
|
+
- Updated dependencies [abf3421a75]
|
|
32
|
+
- Updated dependencies [543be9558e]
|
|
33
|
+
- Updated dependencies [14b712da84]
|
|
34
|
+
- @modern-js/bff-core@2.0.0-beta.2
|
|
35
|
+
- @modern-js/utils@2.0.0-beta.2
|
|
36
|
+
- @modern-js/types@2.0.0-beta.2
|
|
37
|
+
- @modern-js/bff-runtime@2.0.0-beta.2
|
|
38
|
+
|
|
3
39
|
## 2.0.0-beta.1
|
|
4
40
|
|
|
5
41
|
### Major Changes
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"modern",
|
|
12
12
|
"modern.js"
|
|
13
13
|
],
|
|
14
|
-
"version": "2.0.0-beta.
|
|
14
|
+
"version": "2.0.0-beta.2",
|
|
15
15
|
"jsnext:source": "./src/index.ts",
|
|
16
16
|
"types": "./dist/types/index.d.ts",
|
|
17
17
|
"main": "./dist/js/node/index.js",
|
|
@@ -37,10 +37,10 @@
|
|
|
37
37
|
"koa-body": "^4.2.0",
|
|
38
38
|
"koa-router": "^10.0.0",
|
|
39
39
|
"type-is": "^1.6.18",
|
|
40
|
-
"@modern-js/bff-core": "2.0.0-beta.
|
|
41
|
-
"@modern-js/bff-runtime": "2.0.0-beta.
|
|
42
|
-
"@modern-js/utils": "2.0.0-beta.
|
|
43
|
-
"@modern-js/types": "2.0.0-beta.
|
|
40
|
+
"@modern-js/bff-core": "2.0.0-beta.2",
|
|
41
|
+
"@modern-js/bff-runtime": "2.0.0-beta.2",
|
|
42
|
+
"@modern-js/utils": "2.0.0-beta.2",
|
|
43
|
+
"@modern-js/types": "2.0.0-beta.2"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@types/jest": "^27",
|
|
@@ -54,10 +54,10 @@
|
|
|
54
54
|
"supertest": "^6.1.6",
|
|
55
55
|
"typescript": "^4",
|
|
56
56
|
"zod": "^3.17.3",
|
|
57
|
-
"@modern-js/core": "2.0.0-beta.
|
|
58
|
-
"@modern-js/server-core": "2.0.0-beta.
|
|
59
|
-
"@scripts/build": "2.0.0-beta.
|
|
60
|
-
"@scripts/jest-config": "2.0.0-beta.
|
|
57
|
+
"@modern-js/core": "2.0.0-beta.2",
|
|
58
|
+
"@modern-js/server-core": "2.0.0-beta.2",
|
|
59
|
+
"@scripts/build": "2.0.0-beta.2",
|
|
60
|
+
"@scripts/jest-config": "2.0.0-beta.2"
|
|
61
61
|
},
|
|
62
62
|
"modernConfig": {
|
|
63
63
|
"output": {
|
|
@@ -72,9 +72,9 @@
|
|
|
72
72
|
"access": "public"
|
|
73
73
|
},
|
|
74
74
|
"scripts": {
|
|
75
|
-
"new": "modern new",
|
|
76
|
-
"dev": "modern build --watch",
|
|
77
|
-
"build": "modern build",
|
|
75
|
+
"new": "modern-lib new",
|
|
76
|
+
"dev": "modern-lib build --watch",
|
|
77
|
+
"build": "modern-lib build",
|
|
78
78
|
"test": "jest --passWithNoTests"
|
|
79
79
|
}
|
|
80
80
|
}
|