reactant-model 0.68.0 → 0.70.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/package.json +2 -2
- package/test/index.test.ts +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reactant-model",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.70.0",
|
|
4
4
|
"description": "A model lib for Reactant",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"unpkg": "dist/index.umd.js",
|
|
@@ -26,6 +26,6 @@
|
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"immer": "^9.0.15",
|
|
29
|
-
"reactant-module": "^0.
|
|
29
|
+
"reactant-module": "^0.70.0"
|
|
30
30
|
}
|
|
31
31
|
}
|
package/test/index.test.ts
CHANGED
|
@@ -58,6 +58,7 @@ test('base model with `useValue`', () => {
|
|
|
58
58
|
load: (...args: any[]) => {
|
|
59
59
|
//
|
|
60
60
|
},
|
|
61
|
+
dynamicModules: new Map(),
|
|
61
62
|
pluginHooks: {
|
|
62
63
|
middleware: [],
|
|
63
64
|
beforeCombineRootReducers: [],
|
|
@@ -128,6 +129,7 @@ test('base model with `useFactory`', () => {
|
|
|
128
129
|
ServiceIdentifiers,
|
|
129
130
|
loadedModules: new Set(),
|
|
130
131
|
load: (...args: any[]) => {},
|
|
132
|
+
dynamicModules: new Map(),
|
|
131
133
|
pluginHooks: {
|
|
132
134
|
middleware: [],
|
|
133
135
|
beforeCombineRootReducers: [],
|
|
@@ -202,6 +204,7 @@ test('base model with `useValue` and `enablePatches`', () => {
|
|
|
202
204
|
load: (...args: any[]) => {
|
|
203
205
|
//
|
|
204
206
|
},
|
|
207
|
+
dynamicModules: new Map(),
|
|
205
208
|
pluginHooks: {
|
|
206
209
|
middleware: [],
|
|
207
210
|
beforeCombineRootReducers: [],
|