@module-federation/runtime-core 0.0.0-next-20250325025859 → 0.0.0-next-20250327052500
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 +1 -0
- package/dist/index.esm.mjs +1 -1
- package/dist/src/index.d.ts +1 -1
- package/package.json +3 -3
package/dist/index.cjs.js
CHANGED
|
@@ -3035,6 +3035,7 @@ exports.addGlobalSnapshot = addGlobalSnapshot;
|
|
|
3035
3035
|
exports.assert = assert;
|
|
3036
3036
|
exports.getGlobalFederationConstructor = getGlobalFederationConstructor;
|
|
3037
3037
|
exports.getGlobalSnapshot = getGlobalSnapshot;
|
|
3038
|
+
exports.getGlobalSnapshotInfoByModuleInfo = getGlobalSnapshotInfoByModuleInfo;
|
|
3038
3039
|
exports.getInfoWithoutType = getInfoWithoutType;
|
|
3039
3040
|
exports.getRegisteredShare = getRegisteredShare;
|
|
3040
3041
|
exports.getRemoteEntry = getRemoteEntry;
|
package/dist/index.esm.mjs
CHANGED
|
@@ -3018,4 +3018,4 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
3018
3018
|
__proto__: null
|
|
3019
3019
|
});
|
|
3020
3020
|
|
|
3021
|
-
export { CurrentGlobal, FederationHost, Global, Module, addGlobalSnapshot, assert, getGlobalFederationConstructor, getGlobalSnapshot, getInfoWithoutType, getRegisteredShare, getRemoteEntry, getRemoteInfo, helpers, isStaticResourcesEqual, matchRemoteWithNameAndExpose, registerGlobalPlugins, resetFederationGlobalInfo, safeWrapper, satisfy, setGlobalFederationConstructor, setGlobalFederationInstance, index as types };
|
|
3021
|
+
export { CurrentGlobal, FederationHost, Global, Module, addGlobalSnapshot, assert, getGlobalFederationConstructor, getGlobalSnapshot, getGlobalSnapshotInfoByModuleInfo, getInfoWithoutType, getRegisteredShare, getRemoteEntry, getRemoteInfo, helpers, isStaticResourcesEqual, matchRemoteWithNameAndExpose, registerGlobalPlugins, resetFederationGlobalInfo, safeWrapper, satisfy, setGlobalFederationConstructor, setGlobalFederationInstance, index as types };
|
package/dist/src/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import helpers, { type IGlobalUtils, type IShareUtils } from './helpers';
|
|
2
2
|
export { FederationHost } from './core';
|
|
3
|
-
export { type Federation, CurrentGlobal, Global, getGlobalFederationConstructor, setGlobalFederationInstance, setGlobalFederationConstructor, resetFederationGlobalInfo, addGlobalSnapshot, getGlobalSnapshot, getInfoWithoutType, } from './global';
|
|
3
|
+
export { type Federation, CurrentGlobal, Global, getGlobalFederationConstructor, setGlobalFederationInstance, setGlobalFederationConstructor, resetFederationGlobalInfo, addGlobalSnapshot, getGlobalSnapshot, getInfoWithoutType, getGlobalSnapshotInfoByModuleInfo, } from './global';
|
|
4
4
|
export type { UserOptions, FederationRuntimePlugin } from './type';
|
|
5
5
|
export { assert } from './utils/logger';
|
|
6
6
|
export { registerGlobalPlugins } from './global';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@module-federation/runtime-core",
|
|
3
|
-
"version": "0.0.0-next-
|
|
3
|
+
"version": "0.0.0-next-20250327052500",
|
|
4
4
|
"author": "zhouxiao <codingzx@gmail.com>",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"module": "./dist/index.esm.mjs",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
}
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@module-federation/
|
|
40
|
-
"@module-federation/
|
|
39
|
+
"@module-federation/error-codes": "0.0.0-next-20250327052500",
|
|
40
|
+
"@module-federation/sdk": "0.0.0-next-20250327052500"
|
|
41
41
|
}
|
|
42
42
|
}
|