@module-federation/sdk 0.0.0-next-20240704115613 → 0.0.0-next-20240707075106
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 +2 -0
- package/dist/index.esm.js +2 -1
- package/dist/src/constant.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -30,6 +30,7 @@ const MFModuleType = {
|
|
|
30
30
|
};
|
|
31
31
|
const MODULE_DEVTOOL_IDENTIFIER = '__MF_DEVTOOLS_MODULE_INFO__';
|
|
32
32
|
const ENCODE_NAME_PREFIX = 'ENCODE_NAME_PREFIX';
|
|
33
|
+
const TEMP_DIR = '.federation';
|
|
33
34
|
|
|
34
35
|
var ContainerPlugin = /*#__PURE__*/Object.freeze({
|
|
35
36
|
__proto__: null
|
|
@@ -706,6 +707,7 @@ exports.NameTransformMap = NameTransformMap;
|
|
|
706
707
|
exports.NameTransformSymbol = NameTransformSymbol;
|
|
707
708
|
exports.SEPARATOR = SEPARATOR;
|
|
708
709
|
exports.StatsFileName = StatsFileName;
|
|
710
|
+
exports.TEMP_DIR = TEMP_DIR;
|
|
709
711
|
exports.assert = assert;
|
|
710
712
|
exports.composeKeyWithSeparator = composeKeyWithSeparator;
|
|
711
713
|
exports.containerPlugin = ContainerPlugin;
|
package/dist/index.esm.js
CHANGED
|
@@ -26,6 +26,7 @@ const MFModuleType = {
|
|
|
26
26
|
};
|
|
27
27
|
const MODULE_DEVTOOL_IDENTIFIER = '__MF_DEVTOOLS_MODULE_INFO__';
|
|
28
28
|
const ENCODE_NAME_PREFIX = 'ENCODE_NAME_PREFIX';
|
|
29
|
+
const TEMP_DIR = '.federation';
|
|
29
30
|
|
|
30
31
|
var ContainerPlugin = /*#__PURE__*/Object.freeze({
|
|
31
32
|
__proto__: null
|
|
@@ -688,4 +689,4 @@ function normalizeOptions(enableDefault, defaultOptions, key) {
|
|
|
688
689
|
};
|
|
689
690
|
}
|
|
690
691
|
|
|
691
|
-
export { BROWSER_LOG_KEY, BROWSER_LOG_VALUE, ENCODE_NAME_PREFIX, EncodedNameTransformMap, FederationModuleManifest, Logger, MANIFEST_EXT, MFModuleType, MODULE_DEVTOOL_IDENTIFIER, ManifestFileName, NameTransformMap, NameTransformSymbol, SEPARATOR, StatsFileName, assert, composeKeyWithSeparator, ContainerPlugin as containerPlugin, ContainerReferencePlugin as containerReferencePlugin, createLink, createScript, createScriptNode, decodeName, encodeName, error, generateExposeFilename, generateShareFilename, generateSnapshotFromManifest, getProcessEnv, getResourceUrl, inferAutoPublicPath, isBrowserEnv, isDebugMode, isManifestProvider, isStaticResourcesEqual, loadScript, loadScriptNode, logger, ModuleFederationPlugin as moduleFederationPlugin, normalizeOptions, parseEntry, safeWrapper, SharePlugin as sharePlugin, simpleJoinRemoteEntry, warn };
|
|
692
|
+
export { BROWSER_LOG_KEY, BROWSER_LOG_VALUE, ENCODE_NAME_PREFIX, EncodedNameTransformMap, FederationModuleManifest, Logger, MANIFEST_EXT, MFModuleType, MODULE_DEVTOOL_IDENTIFIER, ManifestFileName, NameTransformMap, NameTransformSymbol, SEPARATOR, StatsFileName, TEMP_DIR, assert, composeKeyWithSeparator, ContainerPlugin as containerPlugin, ContainerReferencePlugin as containerReferencePlugin, createLink, createScript, createScriptNode, decodeName, encodeName, error, generateExposeFilename, generateShareFilename, generateSnapshotFromManifest, getProcessEnv, getResourceUrl, inferAutoPublicPath, isBrowserEnv, isDebugMode, isManifestProvider, isStaticResourcesEqual, loadScript, loadScriptNode, logger, ModuleFederationPlugin as moduleFederationPlugin, normalizeOptions, parseEntry, safeWrapper, SharePlugin as sharePlugin, simpleJoinRemoteEntry, warn };
|
package/dist/src/constant.d.ts
CHANGED