@module-federation/runtime 0.7.2 → 0.7.3

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 CHANGED
@@ -1999,7 +1999,7 @@ class FederationHost {
1999
1999
  // maybe will change, temporarily for internal use only
2000
2000
  initContainer: new AsyncWaterfallHook('initContainer')
2001
2001
  });
2002
- this.version = "0.7.2";
2002
+ this.version = "0.7.3";
2003
2003
  this.moduleCache = new Map();
2004
2004
  this.loaderHook = new PluginSystem({
2005
2005
  // FIXME: may not be suitable , not open to the public yet
@@ -1999,7 +1999,7 @@ class FederationHost {
1999
1999
  // maybe will change, temporarily for internal use only
2000
2000
  initContainer: new AsyncWaterfallHook('initContainer')
2001
2001
  });
2002
- this.version = "0.7.2";
2002
+ this.version = "0.7.3";
2003
2003
  this.moduleCache = new Map();
2004
2004
  this.loaderHook = new PluginSystem({
2005
2005
  // FIXME: may not be suitable , not open to the public yet
package/dist/share.cjs.js CHANGED
@@ -183,7 +183,7 @@ function getGlobalFederationConstructor() {
183
183
  function setGlobalFederationConstructor(FederationConstructor, isDebug = sdk.isDebugMode()) {
184
184
  if (isDebug) {
185
185
  CurrentGlobal.__FEDERATION__.__DEBUG_CONSTRUCTOR__ = FederationConstructor;
186
- CurrentGlobal.__FEDERATION__.__DEBUG_CONSTRUCTOR_VERSION__ = "0.7.2";
186
+ CurrentGlobal.__FEDERATION__.__DEBUG_CONSTRUCTOR_VERSION__ = "0.7.3";
187
187
  }
188
188
  }
189
189
  // eslint-disable-next-line @typescript-eslint/ban-types
@@ -181,7 +181,7 @@ function getGlobalFederationConstructor() {
181
181
  function setGlobalFederationConstructor(FederationConstructor, isDebug = isDebugMode()) {
182
182
  if (isDebug) {
183
183
  CurrentGlobal.__FEDERATION__.__DEBUG_CONSTRUCTOR__ = FederationConstructor;
184
- CurrentGlobal.__FEDERATION__.__DEBUG_CONSTRUCTOR_VERSION__ = "0.7.2";
184
+ CurrentGlobal.__FEDERATION__.__DEBUG_CONSTRUCTOR_VERSION__ = "0.7.3";
185
185
  }
186
186
  }
187
187
  // eslint-disable-next-line @typescript-eslint/ban-types
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@module-federation/runtime",
3
- "version": "0.7.2",
3
+ "version": "0.7.3",
4
4
  "author": "zhouxiao <codingzx@gmail.com>",
5
5
  "main": "./dist/index.cjs.js",
6
6
  "module": "./dist/index.esm.mjs",
@@ -50,7 +50,7 @@
50
50
  }
51
51
  },
52
52
  "dependencies": {
53
- "@module-federation/sdk": "0.7.2",
54
- "@module-federation/error-codes": "0.7.2"
53
+ "@module-federation/sdk": "0.7.3",
54
+ "@module-federation/error-codes": "0.7.3"
55
55
  }
56
56
  }
package/dist/package.json DELETED
@@ -1,56 +0,0 @@
1
- {
2
- "name": "@module-federation/runtime",
3
- "version": "0.7.2",
4
- "author": "zhouxiao <codingzx@gmail.com>",
5
- "main": "./index.cjs.js",
6
- "module": "./index.esm.js",
7
- "types": "./dist/index.cjs.d.ts",
8
- "license": "MIT",
9
- "publishConfig": {
10
- "access": "public"
11
- },
12
- "files": [
13
- "dist/",
14
- "README.md"
15
- ],
16
- "exports": {
17
- ".": {
18
- "types": "./dist/index.cjs.d.ts",
19
- "import": "./dist/index.esm.mjs",
20
- "require": "./dist/index.cjs.js"
21
- },
22
- "./helpers": {
23
- "types": "./dist/helpers.cjs.d.ts",
24
- "import": "./dist/helpers.esm.mjs",
25
- "require": "./dist/helpers.cjs.js"
26
- },
27
- "./types": {
28
- "types": "./dist/types.cjs.d.ts",
29
- "import": "./dist/types.esm.mjs",
30
- "require": "./dist/types.cjs.js"
31
- },
32
- "./embedded": {
33
- "types": "./dist/embedded.cjs.d.ts",
34
- "import": "./dist/embedded.esm.mjs",
35
- "require": "./dist/embedded.cjs.js"
36
- },
37
- "./*": "./*"
38
- },
39
- "typesVersions": {
40
- "*": {
41
- ".": [
42
- "./dist/index.cjs.d.ts"
43
- ],
44
- "helpers": [
45
- "./dist/helpers.cjs.d.ts"
46
- ],
47
- "types": [
48
- "./dist/types.cjs.d.ts"
49
- ]
50
- }
51
- },
52
- "dependencies": {
53
- "@module-federation/sdk": "workspace:*",
54
- "@module-federation/error-codes": "workspace:*"
55
- }
56
- }