@modern-js/server-core 1.4.1-beta.1 → 1.16.0
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 +39 -0
- package/package.json +8 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,44 @@
|
|
|
1
1
|
# @modern-js/server-plugin
|
|
2
2
|
|
|
3
|
+
## 1.16.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 1100dd58c: chore: support react 18
|
|
8
|
+
|
|
9
|
+
chore: 支持 React 18
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [641592f52]
|
|
14
|
+
- Updated dependencies [3904b30a5]
|
|
15
|
+
- Updated dependencies [1100dd58c]
|
|
16
|
+
- Updated dependencies [e04e6e76a]
|
|
17
|
+
- Updated dependencies [81c66e4a4]
|
|
18
|
+
- Updated dependencies [2c305b6f5]
|
|
19
|
+
- @modern-js/utils@1.16.0
|
|
20
|
+
- @modern-js/plugin@1.16.0
|
|
21
|
+
|
|
22
|
+
## 1.15.0
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- Updated dependencies [8658a78]
|
|
27
|
+
- Updated dependencies [05d4a4f]
|
|
28
|
+
- Updated dependencies [ad05af9]
|
|
29
|
+
- Updated dependencies [5d53d1c]
|
|
30
|
+
- Updated dependencies [37cd159]
|
|
31
|
+
- @modern-js/utils@1.15.0
|
|
32
|
+
- @modern-js/plugin@1.15.0
|
|
33
|
+
|
|
34
|
+
## 1.4.1
|
|
35
|
+
|
|
36
|
+
### Patch Changes
|
|
37
|
+
|
|
38
|
+
- a27ab8d: feat: add onApiChange hook for bff hot reload
|
|
39
|
+
feat: 为 BFF 热更新优化,添加 onApiChange 钩子
|
|
40
|
+
- @modern-js/utils@1.7.12
|
|
41
|
+
|
|
3
42
|
## 1.4.0
|
|
4
43
|
|
|
5
44
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"modern",
|
|
12
12
|
"modern.js"
|
|
13
13
|
],
|
|
14
|
-
"version": "1.
|
|
14
|
+
"version": "1.16.0",
|
|
15
15
|
"jsnext:source": "./src/index.ts",
|
|
16
16
|
"types": "./dist/types/index.d.ts",
|
|
17
17
|
"main": "./dist/js/node/index.js",
|
|
@@ -28,18 +28,16 @@
|
|
|
28
28
|
}
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@modern-js/plugin": "
|
|
32
|
-
"@modern-js/utils": "
|
|
31
|
+
"@modern-js/plugin": "1.16.0",
|
|
32
|
+
"@modern-js/utils": "1.16.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@modern-js/core": "1.
|
|
36
|
-
"@modern-js/types": "1.
|
|
37
|
-
"@scripts/build": "
|
|
38
|
-
"@scripts/jest-config": "
|
|
35
|
+
"@modern-js/core": "1.16.0",
|
|
36
|
+
"@modern-js/types": "1.16.0",
|
|
37
|
+
"@scripts/build": "1.15.0",
|
|
38
|
+
"@scripts/jest-config": "1.15.0",
|
|
39
39
|
"@types/jest": "^27",
|
|
40
40
|
"@types/node": "^14",
|
|
41
|
-
"@types/react": "^17",
|
|
42
|
-
"@types/react-dom": "^17",
|
|
43
41
|
"http-proxy-middleware": "^2.0.4",
|
|
44
42
|
"jest": "^27",
|
|
45
43
|
"ts-jest": "^27.0.4",
|
|
@@ -53,8 +51,7 @@
|
|
|
53
51
|
},
|
|
54
52
|
"publishConfig": {
|
|
55
53
|
"registry": "https://registry.npmjs.org/",
|
|
56
|
-
"access": "public"
|
|
57
|
-
"types": "./dist/types/index.d.ts"
|
|
54
|
+
"access": "public"
|
|
58
55
|
},
|
|
59
56
|
"wireit": {
|
|
60
57
|
"build": {
|