@modern-js/runtime 1.4.1 → 1.4.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 +13 -0
- package/package.json +4 -4
- package/types/model.d.ts +4 -1
- package/types/state.d.ts +0 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @modern-js/runtime
|
|
2
2
|
|
|
3
|
+
## 1.4.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- b28372c: fix(runtime): fix model types for effects
|
|
8
|
+
|
|
9
|
+
fix(runtime): 修复因为 runtime 包合并导致的 model effects 类型不生效问题
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [9a173a7]
|
|
12
|
+
- @modern-js/webpack@1.12.3
|
|
13
|
+
- @modern-js/runtime-core@1.5.4
|
|
14
|
+
- @modern-js/utils@1.8.0
|
|
15
|
+
|
|
3
16
|
## 1.4.1
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"modern",
|
|
12
12
|
"modern.js"
|
|
13
13
|
],
|
|
14
|
-
"version": "1.4.
|
|
14
|
+
"version": "1.4.2",
|
|
15
15
|
"jsnext:source": "./src/index.ts",
|
|
16
16
|
"types": "./type.d.ts",
|
|
17
17
|
"main": "./dist/js/node/index.js",
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
"@babel/core": "^7.18.0",
|
|
107
107
|
"@loadable/babel-plugin": "^5.13.2",
|
|
108
108
|
"@loadable/server": "^5.15.1",
|
|
109
|
-
"@modern-js/webpack": "^1.12.
|
|
109
|
+
"@modern-js/webpack": "^1.12.3",
|
|
110
110
|
"serialize-javascript": "^6.0.0",
|
|
111
111
|
"history": "^4.7.9",
|
|
112
112
|
"react-router-dom": "^5.1.2",
|
|
@@ -123,7 +123,7 @@
|
|
|
123
123
|
"redux-logger": "^3.0.6"
|
|
124
124
|
},
|
|
125
125
|
"devDependencies": {
|
|
126
|
-
"@modern-js/core": "1.13.
|
|
126
|
+
"@modern-js/core": "1.13.2",
|
|
127
127
|
"@scripts/build": "0.0.0",
|
|
128
128
|
"@types/jest": "^27",
|
|
129
129
|
"@types/node": "^14",
|
|
@@ -132,7 +132,7 @@
|
|
|
132
132
|
"react": "^17",
|
|
133
133
|
"typescript": "^4",
|
|
134
134
|
"jest": "^27",
|
|
135
|
-
"@modern-js/types": "1.6.
|
|
135
|
+
"@modern-js/types": "1.6.1",
|
|
136
136
|
"@modern-js/utils": "1.8.0",
|
|
137
137
|
"@types/react-side-effect": "^1.1.1",
|
|
138
138
|
"@types/loadable__webpack-plugin": "^5.7.3",
|
package/types/model.d.ts
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
/// <reference types="@modern-js-reduck/plugin-auto-actions" />
|
|
2
|
+
/// <reference types="@modern-js-reduck/plugin-devtools" />
|
|
3
|
+
/// <reference types="@modern-js-reduck/plugin-effects" />
|
|
4
|
+
/// <reference types="@modern-js-reduck/plugin-immutable" />
|
|
2
5
|
|
|
3
6
|
export * from '../dist/types/exports/model';
|
package/types/state.d.ts
DELETED