@module-federation/enhanced 2.3.0 → 2.3.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/dist/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @module-federation/enhanced
|
|
2
2
|
|
|
3
|
+
## 2.3.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @module-federation/rspack@2.3.1
|
|
8
|
+
- @module-federation/webpack-bundler-runtime@2.3.1
|
|
9
|
+
- @module-federation/sdk@2.3.1
|
|
10
|
+
- @module-federation/runtime-tools@2.3.1
|
|
11
|
+
- @module-federation/managers@2.3.1
|
|
12
|
+
- @module-federation/manifest@2.3.1
|
|
13
|
+
- @module-federation/dts-plugin@2.3.1
|
|
14
|
+
- @module-federation/bridge-react-webpack-plugin@2.3.1
|
|
15
|
+
- @module-federation/data-prefetch@2.3.1
|
|
16
|
+
- @module-federation/error-codes@2.3.1
|
|
17
|
+
- @module-federation/inject-external-runtime-core-plugin@2.3.1
|
|
18
|
+
- @module-federation/cli@2.3.1
|
|
19
|
+
|
|
3
20
|
## 2.3.0
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
|
@@ -13,8 +13,6 @@ let path = require("path");
|
|
|
13
13
|
path = require_runtime.__toESM(path);
|
|
14
14
|
let fs = require("fs");
|
|
15
15
|
fs = require_runtime.__toESM(fs);
|
|
16
|
-
let btoa = require("btoa");
|
|
17
|
-
btoa = require_runtime.__toESM(btoa);
|
|
18
16
|
|
|
19
17
|
//#region src/lib/container/runtime/FederationRuntimePlugin.ts
|
|
20
18
|
const ModuleDependency = require((0, _module_federation_sdk_normalize_webpack_path.normalizeWebpackPath)("webpack/lib/dependencies/ModuleDependency"));
|
|
@@ -137,7 +135,7 @@ var FederationRuntimePlugin = class FederationRuntimePlugin {
|
|
|
137
135
|
const containerName = this.options.name;
|
|
138
136
|
const hash = require_lib_container_runtime_utils.createHash(`${containerName} ${FederationRuntimePlugin.getTemplate(compiler, this.options, this.bundlerRuntimePath)}`);
|
|
139
137
|
entryFilePath = path.default.join(require_lib_container_constant.TEMP_DIR, `entry.${hash}.js`);
|
|
140
|
-
} else entryFilePath = `data:text/javascript;charset=utf-8;base64,${
|
|
138
|
+
} else entryFilePath = `data:text/javascript;charset=utf-8;base64,${Buffer.from(FederationRuntimePlugin.getTemplate(compiler, this.options, this.bundlerRuntimePath), "utf8").toString("base64")}`;
|
|
141
139
|
onceForCompilerEntryMap.set(compiler, entryFilePath);
|
|
142
140
|
return entryFilePath;
|
|
143
141
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FederationRuntimePlugin.js","names":["getFederationGlobalScope","normalizeToPosixPath","PrefetchPlugin","createHash","TEMP_DIR","FederationRuntimeDependency","FederationModulesPlugin","normalizeRuntimeInitOptionsWithOutShared","FederationRuntimeModule","EmbedFederationRuntimePlugin","HoistContainerReferences"],"sources":["../../../../../src/lib/container/runtime/FederationRuntimePlugin.ts"],"sourcesContent":["import fs from 'fs';\nimport path from 'path';\nimport pBtoa from 'btoa';\nimport type {\n Compiler,\n WebpackPluginInstance,\n Compilation,\n Chunk,\n} from 'webpack';\nimport { normalizeWebpackPath } from '@module-federation/sdk/normalize-webpack-path';\nimport { PrefetchPlugin } from '@module-federation/data-prefetch/cli';\nimport { moduleFederationPlugin } from '@module-federation/sdk';\nimport FederationRuntimeModule from './FederationRuntimeModule';\nimport {\n getFederationGlobalScope,\n normalizeRuntimeInitOptionsWithOutShared,\n createHash,\n normalizeToPosixPath,\n} from './utils';\nimport { TEMP_DIR } from '../constant';\nimport EmbedFederationRuntimePlugin from './EmbedFederationRuntimePlugin';\nimport FederationModulesPlugin from './FederationModulesPlugin';\nimport HoistContainerReferences from '../HoistContainerReferencesPlugin';\nimport FederationRuntimeDependency from './FederationRuntimeDependency';\n\nconst ModuleDependency = require(\n normalizeWebpackPath('webpack/lib/dependencies/ModuleDependency'),\n) as typeof import('webpack/lib/dependencies/ModuleDependency');\n\nconst { RuntimeGlobals, Template } = require(\n normalizeWebpackPath('webpack'),\n) as typeof import('webpack');\nconst { mkdirpSync } = require(\n normalizeWebpackPath('webpack/lib/util/fs'),\n) as typeof import('webpack/lib/util/fs');\n\ntype ResolveFn = typeof require.resolve;\ntype RuntimeEntrySpec = {\n bundler: string;\n esm: string;\n cjs: string;\n};\n\nfunction resolveRuntimeEntry(\n spec: RuntimeEntrySpec,\n implementation: string | undefined,\n resolve: ResolveFn = require.resolve,\n) {\n const candidates = [spec.bundler, spec.esm, spec.cjs];\n const modulePaths = implementation ? [implementation] : undefined;\n let lastError: unknown;\n\n for (const candidate of candidates) {\n try {\n return modulePaths\n ? resolve(candidate, { paths: modulePaths })\n : resolve(candidate);\n } catch (error) {\n lastError = error;\n }\n }\n\n throw lastError;\n}\n\nfunction resolveRuntimeEntryWithFallback(\n spec: RuntimeEntrySpec,\n implementation: string | undefined,\n resolve: ResolveFn = require.resolve,\n) {\n if (implementation) {\n try {\n return resolveRuntimeEntry(spec, implementation, resolve);\n } catch {\n // Fall back to the workspace runtime packages when a custom\n // implementation hasn't published the newer subpath yet.\n }\n }\n\n return resolveRuntimeEntry(spec, undefined, resolve);\n}\nexport function resolveRuntimePaths(\n implementation?: string,\n resolve: ResolveFn = require.resolve,\n) {\n // Prefer the dedicated bundler subpath so webpack can tree-shake across the\n // runtime package boundary. Fall back to the legacy dist contract for older\n // custom implementations that have not published /bundler yet.\n const runtimeToolsPath = resolveRuntimeEntryWithFallback(\n {\n bundler: '@module-federation/runtime-tools/bundler',\n esm: '@module-federation/runtime-tools/dist/index.js',\n cjs: '@module-federation/runtime-tools/dist/index.cjs',\n },\n implementation,\n resolve,\n );\n const moduleBase = implementation || runtimeToolsPath;\n\n return {\n runtimeToolsPath,\n bundlerRuntimePath: resolveRuntimeEntry(\n {\n bundler: '@module-federation/webpack-bundler-runtime/bundler',\n esm: '@module-federation/webpack-bundler-runtime/dist/index.js',\n cjs: '@module-federation/webpack-bundler-runtime/dist/index.cjs',\n },\n moduleBase,\n resolve,\n ),\n runtimePath: resolveRuntimeEntry(\n {\n bundler: '@module-federation/runtime/bundler',\n esm: '@module-federation/runtime/dist/index.js',\n cjs: '@module-federation/runtime/dist/index.cjs',\n },\n moduleBase,\n resolve,\n ),\n };\n}\n\nconst {\n runtimeToolsPath: RuntimeToolsPath,\n bundlerRuntimePath: BundlerRuntimePath,\n runtimePath: RuntimePath,\n} = resolveRuntimePaths();\nconst federationGlobal = getFederationGlobalScope(RuntimeGlobals);\n\nconst onceForCompiler = new WeakSet<Compiler>();\nconst onceForCompilerEntryMap = new WeakMap<Compiler, string>();\n\nclass FederationRuntimePlugin {\n options?: moduleFederationPlugin.ModuleFederationPluginOptions;\n entryFilePath: string;\n bundlerRuntimePath: string;\n runtimePath: string;\n runtimeToolsPath: string;\n federationRuntimeDependency?: FederationRuntimeDependency; // Add this line\n\n constructor(options?: moduleFederationPlugin.ModuleFederationPluginOptions) {\n this.options = options ? { ...options } : undefined;\n this.entryFilePath = '';\n this.bundlerRuntimePath = BundlerRuntimePath;\n this.runtimePath = RuntimePath;\n this.runtimeToolsPath = RuntimeToolsPath;\n this.federationRuntimeDependency = undefined; // Initialize as undefined\n }\n\n static getTemplate(\n compiler: Compiler,\n options: moduleFederationPlugin.ModuleFederationPluginOptions,\n bundlerRuntimePath?: string,\n ) {\n // internal runtime plugin\n const runtimePlugins = options.runtimePlugins;\n const normalizedBundlerRuntimePath = normalizeToPosixPath(\n bundlerRuntimePath || BundlerRuntimePath,\n );\n\n let runtimePluginTemplates = '';\n const runtimePluginCalls: string[] = [];\n\n if (Array.isArray(runtimePlugins)) {\n runtimePlugins.forEach((runtimePlugin, index) => {\n if (!runtimePlugin) {\n return;\n }\n const runtimePluginName = `plugin_${index}`;\n const runtimePluginEntry = Array.isArray(runtimePlugin)\n ? runtimePlugin[0]\n : runtimePlugin;\n const runtimePluginPath = normalizeToPosixPath(\n path.isAbsolute(runtimePluginEntry)\n ? runtimePluginEntry\n : path.join(process.cwd(), runtimePluginEntry),\n );\n const paramsStr =\n Array.isArray(runtimePlugin) && runtimePlugin.length > 1\n ? JSON.stringify(runtimePlugin[1])\n : 'undefined';\n runtimePluginTemplates += `import ${runtimePluginName} from '${runtimePluginPath}';\\n`;\n runtimePluginCalls.push(\n `${runtimePluginName} ? (${runtimePluginName}.default || ${runtimePluginName})(${paramsStr}) : false`,\n );\n });\n }\n const embedRuntimeLines = Template.asString([\n `if(!${federationGlobal}.runtime || !${federationGlobal}.bundlerRuntime){`,\n Template.indent([\n `var prevFederation = ${federationGlobal};`,\n `${federationGlobal} = {}`,\n `for(var key in federation){`,\n Template.indent([`${federationGlobal}[key] = federation[key];`]),\n '}',\n `for(var key in prevFederation){`,\n Template.indent([`${federationGlobal}[key] = prevFederation[key];`]),\n '}',\n ]),\n '}',\n ]);\n\n return Template.asString([\n `import federation from '${normalizedBundlerRuntimePath}';`,\n runtimePluginTemplates,\n embedRuntimeLines,\n `if(!${federationGlobal}.instance){`,\n Template.indent([\n runtimePluginCalls.length\n ? Template.asString([\n `var pluginsToAdd = [`,\n Template.indent(\n Template.indent(runtimePluginCalls.map((call) => `${call},`)),\n ),\n `].filter(Boolean);`,\n `${federationGlobal}.initOptions.plugins = ${federationGlobal}.initOptions.plugins ? `,\n `${federationGlobal}.initOptions.plugins.concat(pluginsToAdd) : pluginsToAdd;`,\n ])\n : '',\n // `${federationGlobal}.instance = ${federationGlobal}.runtime.init(${federationGlobal}.initOptions);`,\n `${federationGlobal}.instance = ${federationGlobal}.bundlerRuntime.init({webpackRequire:${RuntimeGlobals.require}});`,\n `if(${federationGlobal}.attachShareScopeMap){`,\n Template.indent([\n `${federationGlobal}.attachShareScopeMap(${RuntimeGlobals.require})`,\n ]),\n '}',\n `if(${federationGlobal}.installInitialConsumes){`,\n Template.indent([`${federationGlobal}.installInitialConsumes()`]),\n '}',\n ]),\n PrefetchPlugin.addRuntime(compiler, {\n name: options.name!,\n }),\n '}',\n ]);\n }\n\n getFilePath(compiler: Compiler) {\n if (!this.options) {\n return '';\n }\n\n const existedFilePath = onceForCompilerEntryMap.get(compiler);\n\n if (existedFilePath) {\n return existedFilePath;\n }\n\n let entryFilePath = '';\n if (!this.options?.virtualRuntimeEntry) {\n const containerName = this.options.name;\n const hash = createHash(\n `${containerName} ${FederationRuntimePlugin.getTemplate(\n compiler,\n this.options,\n this.bundlerRuntimePath,\n )}`,\n );\n entryFilePath = path.join(TEMP_DIR, `entry.${hash}.js`);\n } else {\n entryFilePath = `data:text/javascript;charset=utf-8;base64,${pBtoa(\n FederationRuntimePlugin.getTemplate(\n compiler,\n this.options,\n this.bundlerRuntimePath,\n ),\n )}`;\n }\n\n onceForCompilerEntryMap.set(compiler, entryFilePath);\n\n return entryFilePath;\n }\n\n ensureFile(compiler: Compiler) {\n if (!this.options) {\n return;\n }\n // skip virtual entry\n if (this.options?.virtualRuntimeEntry) {\n return;\n }\n const filePath = this.entryFilePath;\n const outputFs = (compiler as unknown as { outputFileSystem?: unknown })\n .outputFileSystem;\n const fsLike =\n outputFs &&\n typeof (outputFs as typeof fs).readFileSync === 'function' &&\n typeof (outputFs as typeof fs).writeFileSync === 'function'\n ? (outputFs as typeof fs)\n : fs;\n try {\n fsLike.readFileSync(filePath);\n } catch {\n mkdirpSync(fsLike as any, TEMP_DIR);\n fsLike.writeFileSync(\n filePath,\n FederationRuntimePlugin.getTemplate(\n compiler,\n this.options,\n this.bundlerRuntimePath,\n ),\n );\n }\n }\n\n getDependency(compiler: Compiler) {\n if (this.federationRuntimeDependency)\n return this.federationRuntimeDependency;\n\n this.ensureFile(compiler);\n\n this.federationRuntimeDependency = new FederationRuntimeDependency(\n this.entryFilePath,\n );\n return this.federationRuntimeDependency;\n }\n\n prependEntry(compiler: Compiler) {\n if (!this.options?.virtualRuntimeEntry) {\n this.ensureFile(compiler);\n }\n\n compiler.hooks.thisCompilation.tap(\n this.constructor.name,\n (compilation: Compilation, { normalModuleFactory }) => {\n compilation.dependencyFactories.set(\n FederationRuntimeDependency,\n normalModuleFactory,\n );\n compilation.dependencyTemplates.set(\n FederationRuntimeDependency,\n new ModuleDependency.Template(),\n );\n },\n );\n compiler.hooks.make.tapAsync(\n this.constructor.name,\n (compilation: Compilation, callback) => {\n const federationRuntimeDependency = this.getDependency(compiler);\n const hooks = FederationModulesPlugin.getCompilationHooks(compilation);\n compilation.addInclude(\n compiler.context,\n federationRuntimeDependency,\n { name: undefined },\n (err) => {\n if (err) {\n return callback(err);\n }\n hooks.addFederationRuntimeDependency.call(\n federationRuntimeDependency,\n );\n callback();\n },\n );\n },\n );\n }\n\n injectRuntime(compiler: Compiler) {\n if (!this.options || !this.options.name) {\n return;\n }\n const name = this.options.name;\n const initOptionsWithoutShared = normalizeRuntimeInitOptionsWithOutShared(\n this.options,\n );\n const federationGlobal = getFederationGlobalScope(\n RuntimeGlobals || ({} as typeof RuntimeGlobals),\n );\n\n compiler.hooks.thisCompilation.tap(\n this.constructor.name,\n (compilation: Compilation) => {\n const handler = (chunk: Chunk, runtimeRequirements: Set<string>) => {\n if (runtimeRequirements.has(federationGlobal)) return;\n runtimeRequirements.add(federationGlobal);\n runtimeRequirements.add(RuntimeGlobals.interceptModuleExecution);\n runtimeRequirements.add(RuntimeGlobals.moduleCache);\n runtimeRequirements.add(RuntimeGlobals.compatGetDefaultExport);\n\n compilation.addRuntimeModule(\n chunk,\n new FederationRuntimeModule(\n runtimeRequirements,\n name,\n initOptionsWithoutShared,\n ),\n );\n };\n\n compilation.hooks.additionalTreeRuntimeRequirements.tap(\n this.constructor.name,\n (chunk: Chunk, runtimeRequirements: Set<string>) => {\n if (!chunk.hasRuntime()) return;\n if (runtimeRequirements.has(RuntimeGlobals.initializeSharing))\n return;\n if (runtimeRequirements.has(RuntimeGlobals.currentRemoteGetScope))\n return;\n if (runtimeRequirements.has(RuntimeGlobals.shareScopeMap)) return;\n if (runtimeRequirements.has(federationGlobal)) return;\n handler(chunk, runtimeRequirements);\n },\n );\n\n // if federation runtime requirements exist\n // attach runtime module to the chunk\n compilation.hooks.runtimeRequirementInTree\n .for(RuntimeGlobals.initializeSharing)\n .tap(this.constructor.name, handler);\n compilation.hooks.runtimeRequirementInTree\n .for(RuntimeGlobals.currentRemoteGetScope)\n .tap(this.constructor.name, handler);\n compilation.hooks.runtimeRequirementInTree\n .for(RuntimeGlobals.shareScopeMap)\n .tap(this.constructor.name, handler);\n compilation.hooks.runtimeRequirementInTree\n .for(federationGlobal)\n .tap(this.constructor.name, handler);\n },\n );\n }\n\n getRuntimeAlias(compiler: Compiler) {\n const { implementation } = this.options || {};\n const alias: any = compiler.options.resolve.alias || {};\n\n const resolvedPaths = resolveRuntimePaths(implementation);\n\n this.runtimeToolsPath = resolvedPaths.runtimeToolsPath;\n this.bundlerRuntimePath = resolvedPaths.bundlerRuntimePath;\n\n if (alias['@module-federation/runtime$']) {\n this.runtimePath = alias['@module-federation/runtime$'];\n return this.runtimePath;\n }\n\n this.runtimePath = resolvedPaths.runtimePath;\n\n return this.runtimePath;\n }\n\n setRuntimeAlias(compiler: Compiler) {\n const { implementation } = this.options || {};\n const alias: any = compiler.options.resolve.alias || {};\n const runtimePath = this.getRuntimeAlias(compiler);\n alias['@module-federation/runtime$'] =\n alias['@module-federation/runtime$'] || runtimePath;\n alias['@module-federation/runtime-tools$'] =\n alias['@module-federation/runtime-tools$'] ||\n implementation ||\n this.runtimeToolsPath;\n\n // Set up aliases for the federation runtime and tools\n // This ensures that the correct versions are used throughout the project\n compiler.options.resolve.alias = alias;\n }\n\n apply(compiler: Compiler) {\n const useSharedContainerPlugin = compiler.options.plugins.find(\n (p): p is WebpackPluginInstance & { _options?: any } => {\n if (typeof p !== 'object' || !p) {\n return false;\n }\n return p['name'] === 'SharedContainerPlugin';\n },\n );\n // share container plugin should not inject mf runtime\n if (useSharedContainerPlugin) {\n return;\n }\n const useModuleFederationPlugin = compiler.options.plugins.find(\n (p): p is WebpackPluginInstance & { _options?: any } => {\n if (typeof p !== 'object' || !p) {\n return false;\n }\n return p['name'] === 'ModuleFederationPlugin';\n },\n );\n\n if (useModuleFederationPlugin && !this.options) {\n this.options = useModuleFederationPlugin._options;\n }\n\n const useContainerPlugin = compiler.options.plugins.find(\n (p): p is WebpackPluginInstance & { _options?: any } => {\n if (typeof p !== 'object' || !p) {\n return false;\n }\n\n return p['name'] === 'ContainerPlugin';\n },\n );\n\n if (useContainerPlugin && !this.options) {\n this.options = useContainerPlugin._options;\n }\n\n if (!useContainerPlugin && !useModuleFederationPlugin) {\n this.options = {\n remotes: {},\n ...this.options,\n };\n }\n if (this.options && !this.options?.name) {\n //! the instance may get the same one if the name is the same https://github.com/module-federation/core/blob/main/packages/runtime/src/index.ts#L18\n this.options.name =\n compiler.options.output.uniqueName || `container_${Date.now()}`;\n }\n\n const resolvedPaths = resolveRuntimePaths(this.options?.implementation);\n this.bundlerRuntimePath = resolvedPaths.bundlerRuntimePath;\n this.runtimePath = resolvedPaths.runtimePath;\n this.runtimeToolsPath = resolvedPaths.runtimeToolsPath;\n\n this.entryFilePath = this.getFilePath(compiler);\n\n new EmbedFederationRuntimePlugin().apply(compiler);\n\n new HoistContainerReferences().apply(compiler);\n\n // dont run multiple times on every apply()\n if (!onceForCompiler.has(compiler)) {\n this.prependEntry(compiler);\n this.injectRuntime(compiler);\n this.setRuntimeAlias(compiler);\n onceForCompiler.add(compiler);\n }\n }\n}\n\nexport default FederationRuntimePlugin;\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"FederationRuntimePlugin.js","names":["getFederationGlobalScope","normalizeToPosixPath","PrefetchPlugin","createHash","TEMP_DIR","FederationRuntimeDependency","FederationModulesPlugin","normalizeRuntimeInitOptionsWithOutShared","FederationRuntimeModule","EmbedFederationRuntimePlugin","HoistContainerReferences"],"sources":["../../../../../src/lib/container/runtime/FederationRuntimePlugin.ts"],"sourcesContent":["import fs from 'fs';\nimport path from 'path';\nimport type {\n Compiler,\n WebpackPluginInstance,\n Compilation,\n Chunk,\n} from 'webpack';\nimport { normalizeWebpackPath } from '@module-federation/sdk/normalize-webpack-path';\nimport { PrefetchPlugin } from '@module-federation/data-prefetch/cli';\nimport { moduleFederationPlugin } from '@module-federation/sdk';\nimport FederationRuntimeModule from './FederationRuntimeModule';\nimport {\n getFederationGlobalScope,\n normalizeRuntimeInitOptionsWithOutShared,\n createHash,\n normalizeToPosixPath,\n} from './utils';\nimport { TEMP_DIR } from '../constant';\nimport EmbedFederationRuntimePlugin from './EmbedFederationRuntimePlugin';\nimport FederationModulesPlugin from './FederationModulesPlugin';\nimport HoistContainerReferences from '../HoistContainerReferencesPlugin';\nimport FederationRuntimeDependency from './FederationRuntimeDependency';\n\nconst ModuleDependency = require(\n normalizeWebpackPath('webpack/lib/dependencies/ModuleDependency'),\n) as typeof import('webpack/lib/dependencies/ModuleDependency');\n\nconst { RuntimeGlobals, Template } = require(\n normalizeWebpackPath('webpack'),\n) as typeof import('webpack');\nconst { mkdirpSync } = require(\n normalizeWebpackPath('webpack/lib/util/fs'),\n) as typeof import('webpack/lib/util/fs');\n\ntype ResolveFn = typeof require.resolve;\ntype RuntimeEntrySpec = {\n bundler: string;\n esm: string;\n cjs: string;\n};\n\nfunction resolveRuntimeEntry(\n spec: RuntimeEntrySpec,\n implementation: string | undefined,\n resolve: ResolveFn = require.resolve,\n) {\n const candidates = [spec.bundler, spec.esm, spec.cjs];\n const modulePaths = implementation ? [implementation] : undefined;\n let lastError: unknown;\n\n for (const candidate of candidates) {\n try {\n return modulePaths\n ? resolve(candidate, { paths: modulePaths })\n : resolve(candidate);\n } catch (error) {\n lastError = error;\n }\n }\n\n throw lastError;\n}\n\nfunction resolveRuntimeEntryWithFallback(\n spec: RuntimeEntrySpec,\n implementation: string | undefined,\n resolve: ResolveFn = require.resolve,\n) {\n if (implementation) {\n try {\n return resolveRuntimeEntry(spec, implementation, resolve);\n } catch {\n // Fall back to the workspace runtime packages when a custom\n // implementation hasn't published the newer subpath yet.\n }\n }\n\n return resolveRuntimeEntry(spec, undefined, resolve);\n}\nexport function resolveRuntimePaths(\n implementation?: string,\n resolve: ResolveFn = require.resolve,\n) {\n // Prefer the dedicated bundler subpath so webpack can tree-shake across the\n // runtime package boundary. Fall back to the legacy dist contract for older\n // custom implementations that have not published /bundler yet.\n const runtimeToolsPath = resolveRuntimeEntryWithFallback(\n {\n bundler: '@module-federation/runtime-tools/bundler',\n esm: '@module-federation/runtime-tools/dist/index.js',\n cjs: '@module-federation/runtime-tools/dist/index.cjs',\n },\n implementation,\n resolve,\n );\n const moduleBase = implementation || runtimeToolsPath;\n\n return {\n runtimeToolsPath,\n bundlerRuntimePath: resolveRuntimeEntry(\n {\n bundler: '@module-federation/webpack-bundler-runtime/bundler',\n esm: '@module-federation/webpack-bundler-runtime/dist/index.js',\n cjs: '@module-federation/webpack-bundler-runtime/dist/index.cjs',\n },\n moduleBase,\n resolve,\n ),\n runtimePath: resolveRuntimeEntry(\n {\n bundler: '@module-federation/runtime/bundler',\n esm: '@module-federation/runtime/dist/index.js',\n cjs: '@module-federation/runtime/dist/index.cjs',\n },\n moduleBase,\n resolve,\n ),\n };\n}\n\nconst {\n runtimeToolsPath: RuntimeToolsPath,\n bundlerRuntimePath: BundlerRuntimePath,\n runtimePath: RuntimePath,\n} = resolveRuntimePaths();\nconst federationGlobal = getFederationGlobalScope(RuntimeGlobals);\n\nconst onceForCompiler = new WeakSet<Compiler>();\nconst onceForCompilerEntryMap = new WeakMap<Compiler, string>();\n\nclass FederationRuntimePlugin {\n options?: moduleFederationPlugin.ModuleFederationPluginOptions;\n entryFilePath: string;\n bundlerRuntimePath: string;\n runtimePath: string;\n runtimeToolsPath: string;\n federationRuntimeDependency?: FederationRuntimeDependency; // Add this line\n\n constructor(options?: moduleFederationPlugin.ModuleFederationPluginOptions) {\n this.options = options ? { ...options } : undefined;\n this.entryFilePath = '';\n this.bundlerRuntimePath = BundlerRuntimePath;\n this.runtimePath = RuntimePath;\n this.runtimeToolsPath = RuntimeToolsPath;\n this.federationRuntimeDependency = undefined; // Initialize as undefined\n }\n\n static getTemplate(\n compiler: Compiler,\n options: moduleFederationPlugin.ModuleFederationPluginOptions,\n bundlerRuntimePath?: string,\n ) {\n // internal runtime plugin\n const runtimePlugins = options.runtimePlugins;\n const normalizedBundlerRuntimePath = normalizeToPosixPath(\n bundlerRuntimePath || BundlerRuntimePath,\n );\n\n let runtimePluginTemplates = '';\n const runtimePluginCalls: string[] = [];\n\n if (Array.isArray(runtimePlugins)) {\n runtimePlugins.forEach((runtimePlugin, index) => {\n if (!runtimePlugin) {\n return;\n }\n const runtimePluginName = `plugin_${index}`;\n const runtimePluginEntry = Array.isArray(runtimePlugin)\n ? runtimePlugin[0]\n : runtimePlugin;\n const runtimePluginPath = normalizeToPosixPath(\n path.isAbsolute(runtimePluginEntry)\n ? runtimePluginEntry\n : path.join(process.cwd(), runtimePluginEntry),\n );\n const paramsStr =\n Array.isArray(runtimePlugin) && runtimePlugin.length > 1\n ? JSON.stringify(runtimePlugin[1])\n : 'undefined';\n runtimePluginTemplates += `import ${runtimePluginName} from '${runtimePluginPath}';\\n`;\n runtimePluginCalls.push(\n `${runtimePluginName} ? (${runtimePluginName}.default || ${runtimePluginName})(${paramsStr}) : false`,\n );\n });\n }\n const embedRuntimeLines = Template.asString([\n `if(!${federationGlobal}.runtime || !${federationGlobal}.bundlerRuntime){`,\n Template.indent([\n `var prevFederation = ${federationGlobal};`,\n `${federationGlobal} = {}`,\n `for(var key in federation){`,\n Template.indent([`${federationGlobal}[key] = federation[key];`]),\n '}',\n `for(var key in prevFederation){`,\n Template.indent([`${federationGlobal}[key] = prevFederation[key];`]),\n '}',\n ]),\n '}',\n ]);\n\n return Template.asString([\n `import federation from '${normalizedBundlerRuntimePath}';`,\n runtimePluginTemplates,\n embedRuntimeLines,\n `if(!${federationGlobal}.instance){`,\n Template.indent([\n runtimePluginCalls.length\n ? Template.asString([\n `var pluginsToAdd = [`,\n Template.indent(\n Template.indent(runtimePluginCalls.map((call) => `${call},`)),\n ),\n `].filter(Boolean);`,\n `${federationGlobal}.initOptions.plugins = ${federationGlobal}.initOptions.plugins ? `,\n `${federationGlobal}.initOptions.plugins.concat(pluginsToAdd) : pluginsToAdd;`,\n ])\n : '',\n // `${federationGlobal}.instance = ${federationGlobal}.runtime.init(${federationGlobal}.initOptions);`,\n `${federationGlobal}.instance = ${federationGlobal}.bundlerRuntime.init({webpackRequire:${RuntimeGlobals.require}});`,\n `if(${federationGlobal}.attachShareScopeMap){`,\n Template.indent([\n `${federationGlobal}.attachShareScopeMap(${RuntimeGlobals.require})`,\n ]),\n '}',\n `if(${federationGlobal}.installInitialConsumes){`,\n Template.indent([`${federationGlobal}.installInitialConsumes()`]),\n '}',\n ]),\n PrefetchPlugin.addRuntime(compiler, {\n name: options.name!,\n }),\n '}',\n ]);\n }\n\n getFilePath(compiler: Compiler) {\n if (!this.options) {\n return '';\n }\n\n const existedFilePath = onceForCompilerEntryMap.get(compiler);\n\n if (existedFilePath) {\n return existedFilePath;\n }\n\n let entryFilePath = '';\n if (!this.options?.virtualRuntimeEntry) {\n const containerName = this.options.name;\n const hash = createHash(\n `${containerName} ${FederationRuntimePlugin.getTemplate(\n compiler,\n this.options,\n this.bundlerRuntimePath,\n )}`,\n );\n entryFilePath = path.join(TEMP_DIR, `entry.${hash}.js`);\n } else {\n entryFilePath = `data:text/javascript;charset=utf-8;base64,${Buffer.from(\n FederationRuntimePlugin.getTemplate(\n compiler,\n this.options,\n this.bundlerRuntimePath,\n ),\n 'utf8',\n ).toString('base64')}`;\n }\n\n onceForCompilerEntryMap.set(compiler, entryFilePath);\n\n return entryFilePath;\n }\n\n ensureFile(compiler: Compiler) {\n if (!this.options) {\n return;\n }\n // skip virtual entry\n if (this.options?.virtualRuntimeEntry) {\n return;\n }\n const filePath = this.entryFilePath;\n const outputFs = (compiler as unknown as { outputFileSystem?: unknown })\n .outputFileSystem;\n const fsLike =\n outputFs &&\n typeof (outputFs as typeof fs).readFileSync === 'function' &&\n typeof (outputFs as typeof fs).writeFileSync === 'function'\n ? (outputFs as typeof fs)\n : fs;\n try {\n fsLike.readFileSync(filePath);\n } catch {\n mkdirpSync(fsLike as any, TEMP_DIR);\n fsLike.writeFileSync(\n filePath,\n FederationRuntimePlugin.getTemplate(\n compiler,\n this.options,\n this.bundlerRuntimePath,\n ),\n );\n }\n }\n\n getDependency(compiler: Compiler) {\n if (this.federationRuntimeDependency)\n return this.federationRuntimeDependency;\n\n this.ensureFile(compiler);\n\n this.federationRuntimeDependency = new FederationRuntimeDependency(\n this.entryFilePath,\n );\n return this.federationRuntimeDependency;\n }\n\n prependEntry(compiler: Compiler) {\n if (!this.options?.virtualRuntimeEntry) {\n this.ensureFile(compiler);\n }\n\n compiler.hooks.thisCompilation.tap(\n this.constructor.name,\n (compilation: Compilation, { normalModuleFactory }) => {\n compilation.dependencyFactories.set(\n FederationRuntimeDependency,\n normalModuleFactory,\n );\n compilation.dependencyTemplates.set(\n FederationRuntimeDependency,\n new ModuleDependency.Template(),\n );\n },\n );\n compiler.hooks.make.tapAsync(\n this.constructor.name,\n (compilation: Compilation, callback) => {\n const federationRuntimeDependency = this.getDependency(compiler);\n const hooks = FederationModulesPlugin.getCompilationHooks(compilation);\n compilation.addInclude(\n compiler.context,\n federationRuntimeDependency,\n { name: undefined },\n (err) => {\n if (err) {\n return callback(err);\n }\n hooks.addFederationRuntimeDependency.call(\n federationRuntimeDependency,\n );\n callback();\n },\n );\n },\n );\n }\n\n injectRuntime(compiler: Compiler) {\n if (!this.options || !this.options.name) {\n return;\n }\n const name = this.options.name;\n const initOptionsWithoutShared = normalizeRuntimeInitOptionsWithOutShared(\n this.options,\n );\n const federationGlobal = getFederationGlobalScope(\n RuntimeGlobals || ({} as typeof RuntimeGlobals),\n );\n\n compiler.hooks.thisCompilation.tap(\n this.constructor.name,\n (compilation: Compilation) => {\n const handler = (chunk: Chunk, runtimeRequirements: Set<string>) => {\n if (runtimeRequirements.has(federationGlobal)) return;\n runtimeRequirements.add(federationGlobal);\n runtimeRequirements.add(RuntimeGlobals.interceptModuleExecution);\n runtimeRequirements.add(RuntimeGlobals.moduleCache);\n runtimeRequirements.add(RuntimeGlobals.compatGetDefaultExport);\n\n compilation.addRuntimeModule(\n chunk,\n new FederationRuntimeModule(\n runtimeRequirements,\n name,\n initOptionsWithoutShared,\n ),\n );\n };\n\n compilation.hooks.additionalTreeRuntimeRequirements.tap(\n this.constructor.name,\n (chunk: Chunk, runtimeRequirements: Set<string>) => {\n if (!chunk.hasRuntime()) return;\n if (runtimeRequirements.has(RuntimeGlobals.initializeSharing))\n return;\n if (runtimeRequirements.has(RuntimeGlobals.currentRemoteGetScope))\n return;\n if (runtimeRequirements.has(RuntimeGlobals.shareScopeMap)) return;\n if (runtimeRequirements.has(federationGlobal)) return;\n handler(chunk, runtimeRequirements);\n },\n );\n\n // if federation runtime requirements exist\n // attach runtime module to the chunk\n compilation.hooks.runtimeRequirementInTree\n .for(RuntimeGlobals.initializeSharing)\n .tap(this.constructor.name, handler);\n compilation.hooks.runtimeRequirementInTree\n .for(RuntimeGlobals.currentRemoteGetScope)\n .tap(this.constructor.name, handler);\n compilation.hooks.runtimeRequirementInTree\n .for(RuntimeGlobals.shareScopeMap)\n .tap(this.constructor.name, handler);\n compilation.hooks.runtimeRequirementInTree\n .for(federationGlobal)\n .tap(this.constructor.name, handler);\n },\n );\n }\n\n getRuntimeAlias(compiler: Compiler) {\n const { implementation } = this.options || {};\n const alias: any = compiler.options.resolve.alias || {};\n\n const resolvedPaths = resolveRuntimePaths(implementation);\n\n this.runtimeToolsPath = resolvedPaths.runtimeToolsPath;\n this.bundlerRuntimePath = resolvedPaths.bundlerRuntimePath;\n\n if (alias['@module-federation/runtime$']) {\n this.runtimePath = alias['@module-federation/runtime$'];\n return this.runtimePath;\n }\n\n this.runtimePath = resolvedPaths.runtimePath;\n\n return this.runtimePath;\n }\n\n setRuntimeAlias(compiler: Compiler) {\n const { implementation } = this.options || {};\n const alias: any = compiler.options.resolve.alias || {};\n const runtimePath = this.getRuntimeAlias(compiler);\n alias['@module-federation/runtime$'] =\n alias['@module-federation/runtime$'] || runtimePath;\n alias['@module-federation/runtime-tools$'] =\n alias['@module-federation/runtime-tools$'] ||\n implementation ||\n this.runtimeToolsPath;\n\n // Set up aliases for the federation runtime and tools\n // This ensures that the correct versions are used throughout the project\n compiler.options.resolve.alias = alias;\n }\n\n apply(compiler: Compiler) {\n const useSharedContainerPlugin = compiler.options.plugins.find(\n (p): p is WebpackPluginInstance & { _options?: any } => {\n if (typeof p !== 'object' || !p) {\n return false;\n }\n return p['name'] === 'SharedContainerPlugin';\n },\n );\n // share container plugin should not inject mf runtime\n if (useSharedContainerPlugin) {\n return;\n }\n const useModuleFederationPlugin = compiler.options.plugins.find(\n (p): p is WebpackPluginInstance & { _options?: any } => {\n if (typeof p !== 'object' || !p) {\n return false;\n }\n return p['name'] === 'ModuleFederationPlugin';\n },\n );\n\n if (useModuleFederationPlugin && !this.options) {\n this.options = useModuleFederationPlugin._options;\n }\n\n const useContainerPlugin = compiler.options.plugins.find(\n (p): p is WebpackPluginInstance & { _options?: any } => {\n if (typeof p !== 'object' || !p) {\n return false;\n }\n\n return p['name'] === 'ContainerPlugin';\n },\n );\n\n if (useContainerPlugin && !this.options) {\n this.options = useContainerPlugin._options;\n }\n\n if (!useContainerPlugin && !useModuleFederationPlugin) {\n this.options = {\n remotes: {},\n ...this.options,\n };\n }\n if (this.options && !this.options?.name) {\n //! the instance may get the same one if the name is the same https://github.com/module-federation/core/blob/main/packages/runtime/src/index.ts#L18\n this.options.name =\n compiler.options.output.uniqueName || `container_${Date.now()}`;\n }\n\n const resolvedPaths = resolveRuntimePaths(this.options?.implementation);\n this.bundlerRuntimePath = resolvedPaths.bundlerRuntimePath;\n this.runtimePath = resolvedPaths.runtimePath;\n this.runtimeToolsPath = resolvedPaths.runtimeToolsPath;\n\n this.entryFilePath = this.getFilePath(compiler);\n\n new EmbedFederationRuntimePlugin().apply(compiler);\n\n new HoistContainerReferences().apply(compiler);\n\n // dont run multiple times on every apply()\n if (!onceForCompiler.has(compiler)) {\n this.prependEntry(compiler);\n this.injectRuntime(compiler);\n this.setRuntimeAlias(compiler);\n onceForCompiler.add(compiler);\n }\n }\n}\n\nexport default FederationRuntimePlugin;\n"],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@module-federation/enhanced",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.1",
|
|
4
4
|
"main": "./dist/src/index.js",
|
|
5
5
|
"types": "./dist/src/index.d.ts",
|
|
6
6
|
"repository": {
|
|
@@ -83,7 +83,6 @@
|
|
|
83
83
|
}
|
|
84
84
|
},
|
|
85
85
|
"devDependencies": {
|
|
86
|
-
"@types/btoa": "^1.2.5",
|
|
87
86
|
"ajv": "^8.18.0",
|
|
88
87
|
"enhanced-resolve": "^5.0.0",
|
|
89
88
|
"terser": "^5.37.0",
|
|
@@ -91,22 +90,21 @@
|
|
|
91
90
|
"memfs": "4.46.0"
|
|
92
91
|
},
|
|
93
92
|
"dependencies": {
|
|
94
|
-
"btoa": "^1.2.1",
|
|
95
93
|
"upath": "2.0.1",
|
|
96
94
|
"schema-utils": "^4.3.0",
|
|
97
95
|
"tapable": "2.3.0",
|
|
98
|
-
"@module-federation/
|
|
99
|
-
"@module-federation/data-prefetch": "2.3.
|
|
100
|
-
"@module-federation/dts-plugin": "2.3.
|
|
101
|
-
"@module-federation/
|
|
102
|
-
"@module-federation/
|
|
103
|
-
"@module-federation/
|
|
104
|
-
"@module-federation/
|
|
105
|
-
"@module-federation/
|
|
106
|
-
"@module-federation/
|
|
107
|
-
"@module-federation/
|
|
108
|
-
"@module-federation/
|
|
109
|
-
"@module-federation/cli": "2.3.
|
|
96
|
+
"@module-federation/webpack-bundler-runtime": "2.3.1",
|
|
97
|
+
"@module-federation/data-prefetch": "2.3.1",
|
|
98
|
+
"@module-federation/dts-plugin": "2.3.1",
|
|
99
|
+
"@module-federation/bridge-react-webpack-plugin": "2.3.1",
|
|
100
|
+
"@module-federation/error-codes": "2.3.1",
|
|
101
|
+
"@module-federation/inject-external-runtime-core-plugin": "2.3.1",
|
|
102
|
+
"@module-federation/managers": "2.3.1",
|
|
103
|
+
"@module-federation/rspack": "2.3.1",
|
|
104
|
+
"@module-federation/manifest": "2.3.1",
|
|
105
|
+
"@module-federation/sdk": "2.3.1",
|
|
106
|
+
"@module-federation/runtime-tools": "2.3.1",
|
|
107
|
+
"@module-federation/cli": "2.3.1"
|
|
110
108
|
},
|
|
111
109
|
"scripts": {
|
|
112
110
|
"generate:schema": "node src/scripts/compile-schema.js && node src/scripts/generate-sdk-types.js",
|