@ice/mf-runtime 0.0.7-beta.6 → 0.0.7
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/es2017/RemoteModule.js +3 -2
- package/esm/RemoteModule.js +3 -2
- package/package.json +1 -1
package/es2017/RemoteModule.js
CHANGED
|
@@ -35,11 +35,12 @@ export const RemoteModule = ({ module, scope, runtime, publicPath, LoadingCompon
|
|
|
35
35
|
throw error;
|
|
36
36
|
}
|
|
37
37
|
});
|
|
38
|
-
console.log('icestark RemoteComponent', RemoteComponent);
|
|
39
38
|
return RemoteComponent;
|
|
40
39
|
}, [
|
|
41
40
|
module,
|
|
42
|
-
scope
|
|
41
|
+
scope,
|
|
42
|
+
runtime.react,
|
|
43
|
+
runtime.reactDOM
|
|
43
44
|
]);
|
|
44
45
|
const Loading = LoadingComponent || /*#__PURE__*/ _jsx("div", {
|
|
45
46
|
children: "Loading..."
|
package/esm/RemoteModule.js
CHANGED
|
@@ -68,11 +68,12 @@ export var RemoteModule = function(param) {
|
|
|
68
68
|
}
|
|
69
69
|
});
|
|
70
70
|
}));
|
|
71
|
-
console.log("icestark RemoteComponent", RemoteComponent);
|
|
72
71
|
return RemoteComponent;
|
|
73
72
|
}, [
|
|
74
73
|
module,
|
|
75
|
-
scope
|
|
74
|
+
scope,
|
|
75
|
+
runtime.react,
|
|
76
|
+
runtime.reactDOM
|
|
76
77
|
]);
|
|
77
78
|
var Loading = LoadingComponent || /*#__PURE__*/ _jsx("div", {
|
|
78
79
|
children: "Loading..."
|