@module-federation/node 2.7.8 → 2.7.9
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/package.json
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
declare const recordDynamicRemoteEntryHashPlugin: () =>
|
|
1
|
+
import type { ModuleFederationRuntimePlugin } from '@module-federation/runtime';
|
|
2
|
+
declare const recordDynamicRemoteEntryHashPlugin: () => ModuleFederationRuntimePlugin;
|
|
3
3
|
export default recordDynamicRemoteEntryHashPlugin;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { ModuleFederationRuntimePlugin } from '@module-federation/runtime';
|
|
2
2
|
export declare function importNodeModule<T>(name: string): Promise<T>;
|
|
3
3
|
export declare const resolveFile: (rootOutputDir: string, chunkId: string) => string;
|
|
4
4
|
export declare const returnFromCache: (remoteName: string) => string | null;
|
|
@@ -18,4 +18,4 @@ export declare const setupChunkHandler: (installedChunks: {
|
|
|
18
18
|
[key: string]: any;
|
|
19
19
|
}, args: any) => ((chunkId: string, promises: any[]) => void);
|
|
20
20
|
export declare const setupWebpackRequirePatching: (handle: (chunkId: string, promises: any[]) => void) => void;
|
|
21
|
-
export default function ():
|
|
21
|
+
export default function (): ModuleFederationRuntimePlugin;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"public": true,
|
|
3
3
|
"name": "@module-federation/node",
|
|
4
|
-
"version": "2.7.
|
|
4
|
+
"version": "2.7.9",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "./dist/src/index.js",
|
|
7
7
|
"exports": {
|
|
@@ -67,9 +67,9 @@
|
|
|
67
67
|
"btoa": "1.2.1",
|
|
68
68
|
"encoding": "^0.1.13",
|
|
69
69
|
"node-fetch": "2.7.0",
|
|
70
|
-
"@module-federation/enhanced": "0.
|
|
71
|
-
"@module-federation/sdk": "0.
|
|
72
|
-
"@module-federation/runtime": "0.
|
|
70
|
+
"@module-federation/enhanced": "0.17.0",
|
|
71
|
+
"@module-federation/sdk": "0.17.0",
|
|
72
|
+
"@module-federation/runtime": "0.17.0"
|
|
73
73
|
},
|
|
74
74
|
"peerDependencies": {
|
|
75
75
|
"react": "^16||^17||^18||^19",
|