@module-federation/vite 1.20.0 → 1.20.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.
package/lib/index.d.ts CHANGED
@@ -1,6 +1,5 @@
1
1
  import { moduleFederationPlugin } from "@module-federation/sdk";
2
2
  import { ShareStrategy } from "@module-federation/runtime/types";
3
-
4
3
  //#region src/utils/normalizeModuleFederationOptions.d.ts
5
4
  interface RemoteObjectConfig {
6
5
  type?: string;
@@ -47,8 +46,10 @@ type ModuleFederationOptions = {
47
46
  * When false (default), the plugin will not process any CSS assets.
48
47
  * When true, all CSS assets are bundled into every exposed module.
49
48
  */
50
- bundleAllCSS?: boolean; /** Directory reserved for deploy-service generated secondary shared artifacts. */
51
- treeShakingDir?: string; /** Whether inferred usedExports metadata is injected into generated runtime records. */
49
+ bundleAllCSS?: boolean;
50
+ /** Directory reserved for deploy-service generated secondary shared artifacts. */
51
+ treeShakingDir?: string;
52
+ /** Whether inferred usedExports metadata is injected into generated runtime records. */
52
53
  injectTreeShakingUsedExports?: boolean;
53
54
  treeShakingSharedPlugins?: string[];
54
55
  treeShakingSharedExcludePlugins?: string[];