@module-federation/runtime-core 0.19.0 → 0.19.1

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.
@@ -202,7 +202,7 @@ function getGlobalFederationConstructor() {
202
202
  function setGlobalFederationConstructor(FederationConstructor, isDebug = sdk.isDebugMode()) {
203
203
  if (isDebug) {
204
204
  CurrentGlobal.__FEDERATION__.__DEBUG_CONSTRUCTOR__ = FederationConstructor;
205
- CurrentGlobal.__FEDERATION__.__DEBUG_CONSTRUCTOR_VERSION__ = "0.19.0";
205
+ CurrentGlobal.__FEDERATION__.__DEBUG_CONSTRUCTOR_VERSION__ = "0.19.1";
206
206
  }
207
207
  }
208
208
  // eslint-disable-next-line @typescript-eslint/ban-types
@@ -3043,7 +3043,7 @@ class ModuleFederation {
3043
3043
  // maybe will change, temporarily for internal use only
3044
3044
  initContainer: new AsyncWaterfallHook('initContainer')
3045
3045
  });
3046
- this.version = "0.19.0";
3046
+ this.version = "0.19.1";
3047
3047
  this.moduleCache = new Map();
3048
3048
  this.loaderHook = new PluginSystem({
3049
3049
  // FIXME: may not be suitable , not open to the public yet
package/dist/index.esm.js CHANGED
@@ -201,7 +201,7 @@ function getGlobalFederationConstructor() {
201
201
  function setGlobalFederationConstructor(FederationConstructor, isDebug = isDebugMode()) {
202
202
  if (isDebug) {
203
203
  CurrentGlobal.__FEDERATION__.__DEBUG_CONSTRUCTOR__ = FederationConstructor;
204
- CurrentGlobal.__FEDERATION__.__DEBUG_CONSTRUCTOR_VERSION__ = "0.19.0";
204
+ CurrentGlobal.__FEDERATION__.__DEBUG_CONSTRUCTOR_VERSION__ = "0.19.1";
205
205
  }
206
206
  }
207
207
  // eslint-disable-next-line @typescript-eslint/ban-types
@@ -3042,7 +3042,7 @@ class ModuleFederation {
3042
3042
  // maybe will change, temporarily for internal use only
3043
3043
  initContainer: new AsyncWaterfallHook('initContainer')
3044
3044
  });
3045
- this.version = "0.19.0";
3045
+ this.version = "0.19.1";
3046
3046
  this.moduleCache = new Map();
3047
3047
  this.loaderHook = new PluginSystem({
3048
3048
  // 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.19.0",
3
+ "version": "0.19.1",
4
4
  "type": "module",
5
5
  "author": "zhouxiao <codingzx@gmail.com>",
6
6
  "main": "./dist/index.cjs.cjs",
@@ -52,7 +52,7 @@
52
52
  }
53
53
  },
54
54
  "dependencies": {
55
- "@module-federation/error-codes": "0.19.0",
56
- "@module-federation/sdk": "0.19.0"
55
+ "@module-federation/sdk": "0.19.1",
56
+ "@module-federation/error-codes": "0.19.1"
57
57
  }
58
58
  }