@module-federation/runtime 0.0.0-next-20240105121713 → 0.0.0-next-20240105144747
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.
|
@@ -95,6 +95,6 @@ export type RemoteEntryInitOptions = {
|
|
|
95
95
|
export type InitScope = Array<Record<string, never>>;
|
|
96
96
|
export type RemoteEntryExports = {
|
|
97
97
|
get: (id: string) => () => Promise<Module>;
|
|
98
|
-
init: (shareScope: ShareScopeMap[string], initScope?:
|
|
98
|
+
init: (shareScope: ShareScopeMap[string], initScope?: InitScope, remoteEntryInitOPtions?: RemoteEntryInitOptions) => void;
|
|
99
99
|
};
|
|
100
100
|
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@module-federation/runtime",
|
|
3
|
-
"version": "0.0.0-next-
|
|
3
|
+
"version": "0.0.0-next-20240105144747",
|
|
4
4
|
"author": "zhouxiao <codingzx@gmail.com>",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.esm.js",
|
|
@@ -45,6 +45,6 @@
|
|
|
45
45
|
}
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@module-federation/sdk": "0.0.0-next-
|
|
48
|
+
"@module-federation/sdk": "0.0.0-next-20240105144747"
|
|
49
49
|
}
|
|
50
50
|
}
|