@modern-js/bff-runtime 1.3.0 → 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 +18 -0
- package/package.json +3 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @modern-js/bff-runtime
|
|
2
2
|
|
|
3
|
+
## 1.16.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 1100dd58c: chore: support react 18
|
|
8
|
+
|
|
9
|
+
chore: 支持 React 18
|
|
10
|
+
|
|
11
|
+
## 1.15.0
|
|
12
|
+
|
|
13
|
+
## 1.4.0
|
|
14
|
+
|
|
15
|
+
### Minor Changes
|
|
16
|
+
|
|
17
|
+
- 83660b6: chore(server): delete unused `@modern-js/server-utils` dependence
|
|
18
|
+
|
|
19
|
+
chore(server): 删除未使用的 `@modern-js/server-utils` 依赖
|
|
20
|
+
|
|
3
21
|
## 1.3.0
|
|
4
22
|
|
|
5
23
|
### 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",
|
|
@@ -29,18 +29,15 @@
|
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@babel/runtime": "^7.18.0",
|
|
32
|
-
"@modern-js/server-utils": "^1.2.11",
|
|
33
32
|
"farrow-api": "^1.10.8",
|
|
34
33
|
"farrow-pipeline": "^1.10.6",
|
|
35
34
|
"farrow-schema": "^1.10.8"
|
|
36
35
|
},
|
|
37
36
|
"devDependencies": {
|
|
38
|
-
"@scripts/build": "
|
|
39
|
-
"@scripts/jest-config": "
|
|
37
|
+
"@scripts/build": "1.15.0",
|
|
38
|
+
"@scripts/jest-config": "1.15.0",
|
|
40
39
|
"@types/jest": "^27",
|
|
41
40
|
"@types/node": "^14",
|
|
42
|
-
"@types/react": "^17",
|
|
43
|
-
"@types/react-dom": "^17",
|
|
44
41
|
"jest": "^27",
|
|
45
42
|
"ts-jest": "^27.0.5",
|
|
46
43
|
"typescript": "^4"
|