@module-federation/utilities 0.3.2 → 0.3.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/CHANGELOG.md CHANGED
@@ -2,6 +2,15 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [0.3.3](https://github.com/module-federation/nextjs-mf/compare/utils-0.3.2...utils-0.3.3) (2022-10-13)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **typescript:** fix exposePages type ([#309](https://github.com/module-federation/nextjs-mf/issues/309)) ([c0be839](https://github.com/module-federation/nextjs-mf/commit/c0be839787f97c5e23cea3d7cf501caaa469972f))
11
+
12
+
13
+
5
14
  ## [0.3.2](https://github.com/module-federation/nextjs-mf/compare/utils-0.3.1...utils-0.3.2) (2022-10-12)
6
15
 
7
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@module-federation/utilities",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "type": "commonjs",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -10,7 +10,7 @@ declare const __webpack_share_scopes__: Record<string, Record<string, {
10
10
  export interface NextFederationPluginExtraOptions {
11
11
  enableImageLoaderFix?: boolean;
12
12
  enableUrlLoaderFix?: boolean;
13
- exposePages?: Record<string, unknown>;
13
+ exposePages?: boolean;
14
14
  skipSharingNextInternals?: boolean;
15
15
  automaticPageStitching?: boolean;
16
16
  }