@modern-js/runtime 1.3.4 → 1.3.5
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 +13 -0
- package/dist/types/index.d.ts +6 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @modern-js/runtime
|
|
2
2
|
|
|
3
|
+
## 1.3.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8d0f1b9: feat: rumtime config types
|
|
8
|
+
feat: 补充 runtime 配置类型
|
|
9
|
+
- Updated dependencies [33cebd2]
|
|
10
|
+
- @modern-js/plugin-ssr@1.5.0
|
|
11
|
+
- @modern-js/plugin-router@1.2.16
|
|
12
|
+
- @modern-js/plugin-state@1.2.10
|
|
13
|
+
- @modern-js/runtime-core@1.5.3
|
|
14
|
+
- @modern-js/utils@1.7.12
|
|
15
|
+
|
|
3
16
|
## 1.3.4
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/dist/types/index.d.ts
CHANGED
|
@@ -7,4 +7,10 @@ declare module '@modern-js/runtime-core' {
|
|
|
7
7
|
router?: RouterConfig | boolean;
|
|
8
8
|
state?: StateConfig | boolean;
|
|
9
9
|
}
|
|
10
|
+
}
|
|
11
|
+
declare module '@modern-js/core' {
|
|
12
|
+
interface RuntimeConfig {
|
|
13
|
+
router?: RouterConfig | boolean;
|
|
14
|
+
state?: StateConfig | boolean;
|
|
15
|
+
}
|
|
10
16
|
}
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"modern",
|
|
12
12
|
"modern.js"
|
|
13
13
|
],
|
|
14
|
-
"version": "1.3.
|
|
14
|
+
"version": "1.3.5",
|
|
15
15
|
"jsnext:source": "./src/index.ts",
|
|
16
16
|
"types": "./type.d.ts",
|
|
17
17
|
"main": "./dist/js/node/index.js",
|
|
@@ -104,10 +104,10 @@
|
|
|
104
104
|
"dependencies": {
|
|
105
105
|
"@babel/runtime": "^7.18.0",
|
|
106
106
|
"@modern-js/plugin-router": "^1.2.16",
|
|
107
|
-
"@modern-js/plugin-ssr": "^1.
|
|
107
|
+
"@modern-js/plugin-ssr": "^1.5.0",
|
|
108
108
|
"@modern-js/plugin-state": "^1.2.10",
|
|
109
|
-
"@modern-js/runtime-core": "^1.5.
|
|
110
|
-
"@modern-js/utils": "^1.7.
|
|
109
|
+
"@modern-js/runtime-core": "^1.5.3",
|
|
110
|
+
"@modern-js/utils": "^1.7.12",
|
|
111
111
|
"@modern-js/bff-runtime": "^1.3.0",
|
|
112
112
|
"@modern-js/create-request": "^1.3.0",
|
|
113
113
|
"@loadable/component": "^5.15.0",
|
|
@@ -118,7 +118,7 @@
|
|
|
118
118
|
"react-is": "^17"
|
|
119
119
|
},
|
|
120
120
|
"devDependencies": {
|
|
121
|
-
"@modern-js/core": "1.
|
|
121
|
+
"@modern-js/core": "1.13.0",
|
|
122
122
|
"@scripts/build": "0.0.0",
|
|
123
123
|
"@types/jest": "^27",
|
|
124
124
|
"@types/node": "^14",
|