@module-federation/runtime-tools 2.6.0 → 2.8.0

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/bundler.d.ts CHANGED
@@ -5,6 +5,5 @@ export * from "@module-federation/runtime";
5
5
  declare namespace bundler_d_exports {
6
6
  export { runtime as default };
7
7
  }
8
- //#endregion
9
- export { runtime as default };
8
+ export = runtime;
10
9
  //# sourceMappingURL=bundler.d.ts.map
package/dist/index.d.ts CHANGED
@@ -1,3 +1,3 @@
1
1
  import * as runtime from "@module-federation/runtime";
2
2
  export * from "@module-federation/runtime";
3
- export { runtime as default };
3
+ export = runtime;
@@ -1,5 +1,4 @@
1
1
  //#region src/webpack-bundler-runtime.d.ts
2
2
  declare const normalizedWebpackBundlerRuntime: {};
3
- //#endregion
4
- export { normalizedWebpackBundlerRuntime as default };
3
+ export = normalizedWebpackBundlerRuntime;
5
4
  //# sourceMappingURL=webpack-bundler-runtime.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@module-federation/runtime-tools",
3
- "version": "2.6.0",
3
+ "version": "2.8.0",
4
4
  "type": "module",
5
5
  "author": "zhanghang <hanric.zhang@gmail.com>",
6
6
  "main": "./dist/index.cjs",
@@ -83,8 +83,8 @@
83
83
  }
84
84
  },
85
85
  "dependencies": {
86
- "@module-federation/runtime": "2.6.0",
87
- "@module-federation/webpack-bundler-runtime": "2.6.0"
86
+ "@module-federation/webpack-bundler-runtime": "2.8.0",
87
+ "@module-federation/runtime": "2.8.0"
88
88
  },
89
89
  "scripts": {
90
90
  "build": "tsdown --config tsdown.config.ts",