@module-federation/runtime-core 0.0.0-next-20250328121722 → 0.0.0-next-20250401063000
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/dist/index.cjs.js +2 -5
- package/dist/index.esm.mjs +2 -5
- package/package.json +3 -3
package/dist/index.cjs.js
CHANGED
|
@@ -196,7 +196,7 @@ function getGlobalFederationConstructor() {
|
|
|
196
196
|
function setGlobalFederationConstructor(FederationConstructor, isDebug = sdk.isDebugMode()) {
|
|
197
197
|
if (isDebug) {
|
|
198
198
|
CurrentGlobal.__FEDERATION__.__DEBUG_CONSTRUCTOR__ = FederationConstructor;
|
|
199
|
-
CurrentGlobal.__FEDERATION__.__DEBUG_CONSTRUCTOR_VERSION__ = "0.11.
|
|
199
|
+
CurrentGlobal.__FEDERATION__.__DEBUG_CONSTRUCTOR_VERSION__ = "0.11.3";
|
|
200
200
|
}
|
|
201
201
|
}
|
|
202
202
|
// eslint-disable-next-line @typescript-eslint/ban-types
|
|
@@ -688,9 +688,6 @@ function formatShare(shareArgs, from, name, shareStrategy) {
|
|
|
688
688
|
throw new Error(`Can not get shared '${name}'!`);
|
|
689
689
|
});
|
|
690
690
|
}
|
|
691
|
-
if (shareArgs.strategy) {
|
|
692
|
-
warn(`"shared.strategy is deprecated, please set in initOptions.shareStrategy instead!"`);
|
|
693
|
-
}
|
|
694
691
|
var _shareArgs_version, _shareArgs_scope, _shareArgs_strategy;
|
|
695
692
|
return polyfills._extends({
|
|
696
693
|
deps: [],
|
|
@@ -2971,7 +2968,7 @@ class FederationHost {
|
|
|
2971
2968
|
// maybe will change, temporarily for internal use only
|
|
2972
2969
|
initContainer: new AsyncWaterfallHook('initContainer')
|
|
2973
2970
|
});
|
|
2974
|
-
this.version = "0.11.
|
|
2971
|
+
this.version = "0.11.3";
|
|
2975
2972
|
this.moduleCache = new Map();
|
|
2976
2973
|
this.loaderHook = new PluginSystem({
|
|
2977
2974
|
// FIXME: may not be suitable , not open to the public yet
|
package/dist/index.esm.mjs
CHANGED
|
@@ -195,7 +195,7 @@ function getGlobalFederationConstructor() {
|
|
|
195
195
|
function setGlobalFederationConstructor(FederationConstructor, isDebug = isDebugMode()) {
|
|
196
196
|
if (isDebug) {
|
|
197
197
|
CurrentGlobal.__FEDERATION__.__DEBUG_CONSTRUCTOR__ = FederationConstructor;
|
|
198
|
-
CurrentGlobal.__FEDERATION__.__DEBUG_CONSTRUCTOR_VERSION__ = "0.11.
|
|
198
|
+
CurrentGlobal.__FEDERATION__.__DEBUG_CONSTRUCTOR_VERSION__ = "0.11.3";
|
|
199
199
|
}
|
|
200
200
|
}
|
|
201
201
|
// eslint-disable-next-line @typescript-eslint/ban-types
|
|
@@ -687,9 +687,6 @@ function formatShare(shareArgs, from, name, shareStrategy) {
|
|
|
687
687
|
throw new Error(`Can not get shared '${name}'!`);
|
|
688
688
|
});
|
|
689
689
|
}
|
|
690
|
-
if (shareArgs.strategy) {
|
|
691
|
-
warn(`"shared.strategy is deprecated, please set in initOptions.shareStrategy instead!"`);
|
|
692
|
-
}
|
|
693
690
|
var _shareArgs_version, _shareArgs_scope, _shareArgs_strategy;
|
|
694
691
|
return _extends({
|
|
695
692
|
deps: [],
|
|
@@ -2970,7 +2967,7 @@ class FederationHost {
|
|
|
2970
2967
|
// maybe will change, temporarily for internal use only
|
|
2971
2968
|
initContainer: new AsyncWaterfallHook('initContainer')
|
|
2972
2969
|
});
|
|
2973
|
-
this.version = "0.11.
|
|
2970
|
+
this.version = "0.11.3";
|
|
2974
2971
|
this.moduleCache = new Map();
|
|
2975
2972
|
this.loaderHook = new PluginSystem({
|
|
2976
2973
|
// FIXME: may not be suitable , not open to the public yet
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@module-federation/runtime-core",
|
|
3
|
-
"version": "0.0.0-next-
|
|
3
|
+
"version": "0.0.0-next-20250401063000",
|
|
4
4
|
"author": "zhouxiao <codingzx@gmail.com>",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"module": "./dist/index.esm.mjs",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
}
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@module-federation/sdk": "0.0.0-next-
|
|
40
|
-
"@module-federation/error-codes": "0.0.0-next-
|
|
39
|
+
"@module-federation/sdk": "0.0.0-next-20250401063000",
|
|
40
|
+
"@module-federation/error-codes": "0.0.0-next-20250401063000"
|
|
41
41
|
}
|
|
42
42
|
}
|