@squide/firefly-webpack-configs 5.1.3 → 5.1.5

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
@@ -1,5 +1,17 @@
1
1
  # @squide/firefly-webpack-configs
2
2
 
3
+ ## 5.1.5
4
+
5
+ ### Patch Changes
6
+
7
+ - [#342](https://github.com/workleap/wl-squide/pull/342) [`3be4070`](https://github.com/workleap/wl-squide/commit/3be4070d2d647804903b5cc01113e20d5d71cb11) Thanks [@patricklafrance](https://github.com/patricklafrance)! - Minor fine tuning following v16 release.
8
+
9
+ ## 5.1.4
10
+
11
+ ### Patch Changes
12
+
13
+ - [#339](https://github.com/workleap/wl-squide/pull/339) [`de6b333`](https://github.com/workleap/wl-squide/commit/de6b3335f538252bac9545d82c8f1218612eb923) Thanks [@patricklafrance](https://github.com/patricklafrance)! - Bumped packages version.
14
+
3
15
  ## 5.1.3
4
16
 
5
17
  ### Patch Changes
@@ -15,7 +15,7 @@ export interface Features {
15
15
  environmentVariables?: boolean;
16
16
  honeycomb?: boolean;
17
17
  }
18
- export interface RemoteDefinition {
18
+ export interface RemoteDefinition extends Record<string, unknown> {
19
19
  name: string;
20
20
  url: string;
21
21
  }
@@ -114,26 +114,14 @@ function getEnvironmentVariablesSharedDependencies(isHost) {
114
114
  }
115
115
  function getHoneycombSharedDependencies(isHost) {
116
116
  return {
117
- "@honeycombio/opentelemetry-web": {
118
- singleton: true,
119
- eager: isHost ? true : undefined
120
- },
121
117
  "@opentelemetry/api": {
122
118
  singleton: true,
123
119
  eager: isHost ? true : undefined
124
- },
125
- "@opentelemetry/auto-instrumentations-web": {
126
- singleton: true,
127
- eager: isHost ? true : undefined
128
- },
129
- "@squide/firefly-honeycomb": {
130
- singleton: true,
131
- eager: isHost ? true : undefined
132
120
  }
133
121
  };
134
122
  }
135
123
  function getFeaturesDependencies(features, isHost) {
136
- const { router = "react-router", msw = true, i18next, environmentVariables, honeycomb } = features;
124
+ const { router = "react-router", msw = true, i18next, environmentVariables = true, honeycomb = true } = features;
137
125
  return {
138
126
  ...router === "react-router" ? getReactRouterSharedDependencies(isHost) : {},
139
127
  ...msw ? getMswSharedDependency(isHost) : {},
@@ -1 +1 @@
1
- {"version":3,"file":"defineConfig.js","sources":["webpack://@squide/firefly-webpack-configs/./src/defineConfig.ts"],"sourcesContent":["import { ModuleFederationPlugin } from \"@module-federation/enhanced/webpack\";\nimport type { SwcConfig } from \"@workleap/swc-configs\";\nimport { defineBuildConfig, defineBuildHtmlWebpackPluginConfig, defineDevConfig, defineDevHtmlWebpackPluginConfig, type DefineBuildConfigOptions, type DefineDevConfigOptions, type WebpackConfig, type WebpackConfigTransformer } from \"@workleap/webpack-configs\";\nimport merge from \"deepmerge\";\nimport type HtmlWebpackPlugin from \"html-webpack-plugin\";\nimport fs from \"node:fs\";\nimport path, { dirname } from \"node:path\";\nimport url, { fileURLToPath } from \"node:url\";\nimport type webpack from \"webpack\";\nimport { HostApplicationName } from \"./shared.ts\";\n\n// Using import.meta.url instead of import.meta.dirname because Jest is throwing the following error:\n// SyntaxError: Cannot use 'import.meta' outside a module\nconst applicationDirectory = dirname(fileURLToPath(import.meta.url));\nconst packageDirectory = url.fileURLToPath(new URL(\".\", import.meta.url));\n\n// Must be similar to the module name defined in @workleap/module-federation.\nconst RemoteRegisterModuleName = \"./register\";\nconst RemoteEntryPoint = \"remoteEntry.js\";\n\n// Webpack doesn't export ModuleFederationPlugin typings.\nexport type ModuleFederationPluginOptions = ConstructorParameters<typeof ModuleFederationPlugin>[0];\nexport type ModuleFederationRemotesOption = ModuleFederationPluginOptions[\"remotes\"];\n\nexport type ModuleFederationRuntimePlugins = NonNullable<ModuleFederationPluginOptions[\"runtimePlugins\"]>;\nexport type ModuleFederationShared = NonNullable<ModuleFederationPluginOptions[\"shared\"]>;\n\n// Generally, only the host application should have eager dependencies.\n// For more informations about shared dependencies refer to: https://github.com/patricklafrance/wmf-versioning\nfunction getDefaultSharedDependencies(features: Features, isHost: boolean): ModuleFederationShared {\n return {\n \"react\": {\n singleton: true,\n eager: isHost ? true : undefined,\n // Fixed the warning when `react-i18next` is imported in any remote modules.\n // For more information, refer to: https://github.com/i18next/react-i18next/issues/1697#issuecomment-1821748226.\n requiredVersion: features.i18next ? false : undefined\n },\n \"react-dom\": {\n singleton: true,\n eager: isHost ? true : undefined\n },\n \"@squide/core\": {\n singleton: true,\n eager: isHost ? true : undefined\n },\n \"@squide/module-federation\": {\n singleton: true,\n eager: isHost ? true : undefined\n }\n };\n}\n\nexport type Router = \"react-router\";\n\nexport interface Features {\n router?: Router;\n msw?: boolean;\n i18next?: boolean;\n environmentVariables?: boolean;\n honeycomb?: boolean;\n}\n\n// Generally, only the host application should have eager dependencies.\n// For more informations about shared dependencies refer to: https://github.com/patricklafrance/wmf-versioning\nfunction getReactRouterSharedDependencies(isHost: boolean): ModuleFederationShared {\n return {\n \"react-router\": {\n singleton: true,\n eager: isHost ? true : undefined\n },\n \"@squide/react-router\": {\n singleton: true,\n eager: isHost ? true : undefined\n }\n };\n}\n\nfunction getMswSharedDependency(isHost: boolean): ModuleFederationShared {\n return {\n \"@squide/msw\": {\n singleton: true,\n eager: isHost ? true : undefined\n }\n };\n}\n\nfunction getI18nextSharedDependency(isHost: boolean): ModuleFederationShared {\n return {\n \"i18next\": {\n singleton: true,\n eager: isHost ? true : undefined\n },\n // Not adding as a shared dependency for the moment because it causes the following error:\n // Uncaught (in promise) TypeError: i18next_browser_languagedetector__WEBPACK_IMPORTED_MODULE_3__ is not a constructor\n // \"i18next-browser-languagedetector\": {\n // singleton: true,\n // eager: isHost ? true : undefined\n // },\n \"react-i18next\": {\n singleton: true,\n eager: isHost ? true : undefined\n },\n \"@squide/i18next\": {\n singleton: true,\n eager: isHost ? true : undefined\n }\n };\n}\n\nfunction getEnvironmentVariablesSharedDependencies(isHost: boolean): ModuleFederationShared {\n return {\n \"@squide/env-vars\": {\n singleton: true,\n eager: isHost ? true : undefined\n }\n };\n}\n\nfunction getHoneycombSharedDependencies(isHost: boolean): ModuleFederationShared {\n return {\n \"@honeycombio/opentelemetry-web\": {\n singleton: true,\n eager: isHost ? true : undefined\n },\n \"@opentelemetry/api\": {\n singleton: true,\n eager: isHost ? true : undefined\n },\n \"@opentelemetry/auto-instrumentations-web\": {\n singleton: true,\n eager: isHost ? true : undefined\n },\n \"@squide/firefly-honeycomb\": {\n singleton: true,\n eager: isHost ? true : undefined\n }\n };\n}\n\nfunction getFeaturesDependencies(features: Features, isHost: boolean) {\n const {\n router = \"react-router\",\n msw = true,\n i18next,\n environmentVariables,\n honeycomb\n } = features;\n\n return {\n ...(router === \"react-router\" ? getReactRouterSharedDependencies(isHost) : {}),\n ...(msw ? getMswSharedDependency(isHost) : {}),\n ...(i18next ? getI18nextSharedDependency(isHost) : {}),\n ...(environmentVariables ? getEnvironmentVariablesSharedDependencies(isHost) : {}),\n ...(honeycomb ? getHoneycombSharedDependencies(isHost) : {})\n };\n}\n\nfunction resolveDefaultSharedDependencies(features: Features, isHost: boolean) {\n return {\n ...getDefaultSharedDependencies(features, isHost),\n ...getFeaturesDependencies(features, isHost)\n };\n}\n\nconst forceNamedChunkIdsTransformer: WebpackConfigTransformer = (config: WebpackConfig) => {\n config.optimization = {\n ...(config.optimization ?? {}),\n // Without named chunk ids, there are some Webpack features that do not work\n // when used with Module Federation. One of these feature is using a dynamic import in\n // a remote module.\n chunkIds: \"named\"\n };\n\n return config;\n};\n\nfunction createSetUniqueNameTransformer(uniqueName: string) {\n const transformer: WebpackConfigTransformer = (config: WebpackConfig) => {\n config.output = {\n ...(config.output ?? {}),\n // Every host and remotes must have a \"uniqueName\" for React Refresh to work\n // with Module Federation.\n uniqueName\n };\n\n return config;\n };\n\n return transformer;\n}\n\nfunction resolveEntryFilePath(entryPaths: string[]) {\n for (const entryPath of entryPaths) {\n if (fs.existsSync(path.resolve(applicationDirectory, entryPath))) {\n return entryPath;\n }\n }\n\n return entryPaths[0];\n}\n\n//////////////////////////// Host /////////////////////////////\n\nexport interface RemoteDefinition {\n // The name of the remote module.\n name: string;\n // The URL of the remote, ex: http://localhost:8081.\n url: string;\n}\n\nconst HostEntryFilePaths = [\n \"./src/index.ts\",\n \"./src/index.tsx\"\n];\n\nexport interface DefineHostModuleFederationPluginOptions extends ModuleFederationPluginOptions {\n features?: Features;\n}\n\n// The function return type is mandatory, otherwise we got an error TS4058.\nexport function defineHostModuleFederationPluginOptions(remotes: RemoteDefinition[], options: DefineHostModuleFederationPluginOptions): ModuleFederationPluginOptions {\n const {\n features = {},\n shared = {},\n runtimePlugins = [],\n ...rest\n } = options;\n\n const defaultSharedDependencies = resolveDefaultSharedDependencies(features, true);\n\n return {\n name: HostApplicationName,\n // Since Squide modules are only exporting a register function with a standardized API\n // it doesn't requires any typing.\n dts: false,\n // Currently only supporting .js remotes.\n manifest: false,\n remotes: remotes.reduce((acc, x) => {\n // Object reduce are always a mess for typings.\n // eslint-disable-next-line @typescript-eslint/ban-ts-comment\n // @ts-ignore\n acc[x.name] = `${x.name}@${x.url}/${RemoteEntryPoint}`;\n\n return acc;\n }, {}) as ModuleFederationRemotesOption,\n // Deep merging the default shared dependencies with the provided shared dependencies\n // to allow the consumer to easily override a default option of a shared dependency\n // without extending the whole default shared dependencies object.\n shared: merge.all([\n defaultSharedDependencies,\n shared\n ]) as ModuleFederationShared,\n runtimePlugins: [\n path.resolve(packageDirectory, \"./sharedDependenciesResolutionPlugin.js\"),\n path.resolve(packageDirectory, \"./nonCacheableRemoteEntryPlugin.js\"),\n ...runtimePlugins\n ],\n // Commented because it doesn't seems to work, the runtime is still embedded into remotes.\n // experiments: {\n // // The runtime is 100kb minified.\n // federationRuntime: \"hoisted\"\n // },\n ...rest\n };\n}\n\n// Fixing HMR and page reloads when using `publicPath: auto` either in the host or remotes webpack configuration.\n// Otherwise, when a nested page that belongs to a remote module is reloaded, an \"Unexpected token\" error will be thrown.\nfunction trySetHtmlWebpackPluginPublicPath(options: HtmlWebpackPlugin.Options) {\n if (!options.publicPath) {\n options.publicPath = \"/\";\n }\n\n return options;\n}\n\nexport interface DefineDevHostConfigOptions extends Omit<DefineDevConfigOptions, \"htmlWebpackPlugin\" | \"port\"> {\n htmlWebpackPluginOptions?: HtmlWebpackPlugin.Options;\n features?: Features;\n sharedDependencies?: ModuleFederationShared;\n runtimePlugins?: ModuleFederationRuntimePlugins;\n moduleFederationPluginOptions?: ModuleFederationPluginOptions;\n}\n\n// The function return type is mandatory, otherwise we got an error TS4058.\nexport function defineDevHostConfig(swcConfig: SwcConfig, port: number, remotes: RemoteDefinition[], options: DefineDevHostConfigOptions = {}): webpack.Configuration {\n const {\n entry = resolveEntryFilePath(HostEntryFilePaths),\n publicPath = \"auto\",\n cache,\n plugins = [],\n htmlWebpackPluginOptions,\n transformers = [],\n features,\n sharedDependencies,\n runtimePlugins,\n moduleFederationPluginOptions = defineHostModuleFederationPluginOptions(remotes, { features, shared: sharedDependencies, runtimePlugins }),\n ...webpackOptions\n } = options;\n\n return defineDevConfig(swcConfig, {\n entry,\n port,\n publicPath,\n cache,\n htmlWebpackPlugin: trySetHtmlWebpackPluginPublicPath(htmlWebpackPluginOptions ?? defineBuildHtmlWebpackPluginConfig()),\n plugins: [\n ...plugins,\n new ModuleFederationPlugin(moduleFederationPluginOptions)\n ],\n ...webpackOptions,\n transformers: [\n createSetUniqueNameTransformer(HostApplicationName),\n ...transformers\n ]\n });\n}\n\nexport interface DefineBuildHostConfigOptions extends Omit<DefineBuildConfigOptions, \"htmlWebpackPlugin\"> {\n htmlWebpackPluginOptions?: HtmlWebpackPlugin.Options;\n features?: Features;\n sharedDependencies?: ModuleFederationShared;\n runtimePlugins?: ModuleFederationRuntimePlugins;\n moduleFederationPluginOptions?: ModuleFederationPluginOptions;\n}\n\n// The function return type is mandatory, otherwise we got an error TS4058.\nexport function defineBuildHostConfig(swcConfig: SwcConfig, remotes: RemoteDefinition[], options: DefineBuildHostConfigOptions = {}): webpack.Configuration {\n const {\n entry = resolveEntryFilePath(HostEntryFilePaths),\n publicPath = \"auto\",\n plugins = [],\n htmlWebpackPluginOptions,\n transformers = [],\n features,\n sharedDependencies,\n runtimePlugins,\n moduleFederationPluginOptions = defineHostModuleFederationPluginOptions(remotes, { features, shared: sharedDependencies, runtimePlugins }),\n ...webpackOptions\n } = options;\n\n return defineBuildConfig(swcConfig, {\n entry,\n publicPath,\n htmlWebpackPlugin: trySetHtmlWebpackPluginPublicPath(htmlWebpackPluginOptions ?? defineDevHtmlWebpackPluginConfig()),\n plugins: [\n ...plugins,\n new ModuleFederationPlugin(moduleFederationPluginOptions)\n ],\n transformers: [\n forceNamedChunkIdsTransformer,\n createSetUniqueNameTransformer(HostApplicationName),\n ...transformers\n ],\n ...webpackOptions\n });\n}\n\n//////////////////////////// Remote /////////////////////////////\n\nconst RemoteEntryFilePaths = [\n \"./src/register.tsx\",\n \"./src/register.ts\"\n];\n\nexport interface DefineRemoteModuleFederationPluginOptions extends ModuleFederationPluginOptions {\n features?: Features;\n}\n\n// The function return type is mandatory, otherwise we got an error TS4058.\nexport function defineRemoteModuleFederationPluginOptions(applicationName: string, options: DefineRemoteModuleFederationPluginOptions): ModuleFederationPluginOptions {\n const {\n features = {},\n exposes = {},\n shared = {},\n runtimePlugins = [],\n ...rest\n } = options;\n\n const defaultSharedDependencies = resolveDefaultSharedDependencies(features, false);\n\n return {\n name: applicationName,\n // Since Squide modules are only exporting a register function with a standardized API\n // it doesn't requires any typing.\n dts: false,\n // Currently only supporting .js remotes.\n manifest: false,\n filename: RemoteEntryPoint,\n exposes: {\n [RemoteRegisterModuleName]: \"./src/register\",\n ...exposes\n },\n // Deep merging the default shared dependencies with the provided shared dependencies\n // to allow the consumer to easily override a default option of a shared dependency\n // without extending the whole default shared dependencies object.\n shared: merge.all([\n defaultSharedDependencies,\n shared\n ]) as ModuleFederationShared,\n runtimePlugins: [\n path.resolve(packageDirectory, \"./sharedDependenciesResolutionPlugin.js\"),\n path.resolve(packageDirectory, \"./nonCacheableRemoteEntryPlugin.js\"),\n ...runtimePlugins\n ],\n // Commented because it doesn't seems to work, the runtime is still embedded into remotes.\n // experiments: {\n // // The runtime is 100kb minified.\n // federationRuntime: \"hoisted\"\n // },\n ...rest\n };\n}\n\nconst devRemoteModuleTransformer: WebpackConfigTransformer = (config: WebpackConfig) => {\n // \"config.devServer\" does exist but webpack types are a messed. It could probably be solved by importing \"webpack-dev-server\"\n // but I would prefer not adding it as a project dependency.\n // eslint-disable-next-line @typescript-eslint/ban-ts-comment\n // @ts-ignore\n config.devServer.headers = {\n // eslint-disable-next-line @typescript-eslint/ban-ts-comment\n // @ts-ignore\n ...(config.devServer.headers ?? {}),\n // Otherwise hot reload in the host failed with a CORS error.\n \"Access-Control-Allow-Origin\": \"*\"\n };\n\n return config;\n};\n\nexport interface DefineDevRemoteModuleConfigOptions extends Omit<DefineDevConfigOptions, \"port\" | \"overlay\"> {\n features?: Features;\n sharedDependencies?: ModuleFederationShared;\n runtimePlugins?: ModuleFederationRuntimePlugins;\n moduleFederationPluginOptions?: ModuleFederationPluginOptions;\n}\n\n// The function return type is mandatory, otherwise we got an error TS4058.\nexport function defineDevRemoteModuleConfig(swcConfig: SwcConfig, applicationName: string, port: number, options: DefineDevRemoteModuleConfigOptions = {}): webpack.Configuration {\n const {\n entry = resolveEntryFilePath(RemoteEntryFilePaths),\n publicPath = \"auto\",\n cache,\n plugins = [],\n htmlWebpackPlugin = false,\n transformers = [],\n features,\n sharedDependencies,\n runtimePlugins,\n moduleFederationPluginOptions = defineRemoteModuleFederationPluginOptions(applicationName, { features, shared: sharedDependencies, runtimePlugins }),\n ...webpackOptions\n } = options;\n\n return defineDevConfig(swcConfig, {\n entry,\n port,\n publicPath,\n cache,\n htmlWebpackPlugin,\n // Disable the error overlay by default for remotes as otherwise every remote module's error overlay will be\n // stack on top of the host application's error overlay.\n overlay: false,\n plugins: [\n ...plugins,\n new ModuleFederationPlugin(moduleFederationPluginOptions)\n ],\n transformers: [\n devRemoteModuleTransformer,\n createSetUniqueNameTransformer(applicationName),\n ...transformers\n ],\n ...webpackOptions\n });\n}\n\nexport interface DefineBuildRemoteModuleConfigOptions extends DefineBuildConfigOptions {\n features?: Features;\n sharedDependencies?: ModuleFederationShared;\n runtimePlugins?: ModuleFederationRuntimePlugins;\n moduleFederationPluginOptions?: ModuleFederationPluginOptions;\n}\n\n// The function return type is mandatory, otherwise we got an error TS4058.\nexport function defineBuildRemoteModuleConfig(swcConfig: SwcConfig, applicationName: string, options: DefineBuildRemoteModuleConfigOptions = {}): webpack.Configuration {\n const {\n entry = resolveEntryFilePath(RemoteEntryFilePaths),\n publicPath = \"auto\",\n plugins = [],\n htmlWebpackPlugin = false,\n transformers = [],\n features,\n sharedDependencies,\n runtimePlugins,\n moduleFederationPluginOptions = defineRemoteModuleFederationPluginOptions(applicationName, { features, shared: sharedDependencies, runtimePlugins }),\n ...webpackOptions\n } = options;\n\n return defineBuildConfig(swcConfig, {\n entry,\n publicPath,\n htmlWebpackPlugin,\n plugins: [\n ...plugins,\n new ModuleFederationPlugin(moduleFederationPluginOptions)\n ],\n transformers: [\n forceNamedChunkIdsTransformer,\n createSetUniqueNameTransformer(applicationName),\n ...transformers\n ],\n ...webpackOptions\n });\n}\n"],"names":["ModuleFederationPlugin","defineBuildConfig","defineBuildHtmlWebpackPluginConfig","defineDevConfig","defineDevHtmlWebpackPluginConfig","merge","fs","path","dirname","url","fileURLToPath","HostApplicationName","applicationDirectory","packageDirectory","URL","RemoteRegisterModuleName","RemoteEntryPoint","getDefaultSharedDependencies","features","isHost","undefined","getReactRouterSharedDependencies","getMswSharedDependency","getI18nextSharedDependency","getEnvironmentVariablesSharedDependencies","getHoneycombSharedDependencies","getFeaturesDependencies","router","msw","i18next","environmentVariables","honeycomb","resolveDefaultSharedDependencies","forceNamedChunkIdsTransformer","config","createSetUniqueNameTransformer","uniqueName","transformer","resolveEntryFilePath","entryPaths","entryPath","HostEntryFilePaths","defineHostModuleFederationPluginOptions","remotes","options","shared","runtimePlugins","rest","defaultSharedDependencies","acc","x","trySetHtmlWebpackPluginPublicPath","defineDevHostConfig","swcConfig","port","entry","publicPath","cache","plugins","htmlWebpackPluginOptions","transformers","sharedDependencies","moduleFederationPluginOptions","webpackOptions","defineBuildHostConfig","RemoteEntryFilePaths","defineRemoteModuleFederationPluginOptions","applicationName","exposes","devRemoteModuleTransformer","defineDevRemoteModuleConfig","htmlWebpackPlugin","defineBuildRemoteModuleConfig"],"mappings":"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"}
1
+ {"version":3,"file":"defineConfig.js","sources":["../src/defineConfig.ts"],"sourcesContent":["import { ModuleFederationPlugin } from \"@module-federation/enhanced/webpack\";\nimport type { SwcConfig } from \"@workleap/swc-configs\";\nimport { defineBuildConfig, defineBuildHtmlWebpackPluginConfig, defineDevConfig, defineDevHtmlWebpackPluginConfig, type DefineBuildConfigOptions, type DefineDevConfigOptions, type WebpackConfig, type WebpackConfigTransformer } from \"@workleap/webpack-configs\";\nimport merge from \"deepmerge\";\nimport type HtmlWebpackPlugin from \"html-webpack-plugin\";\nimport fs from \"node:fs\";\nimport path, { dirname } from \"node:path\";\nimport url, { fileURLToPath } from \"node:url\";\nimport type webpack from \"webpack\";\nimport { HostApplicationName } from \"./shared.ts\";\n\n// Using import.meta.url instead of import.meta.dirname because Jest is throwing the following error:\n// SyntaxError: Cannot use 'import.meta' outside a module\nconst applicationDirectory = dirname(fileURLToPath(import.meta.url));\nconst packageDirectory = url.fileURLToPath(new URL(\".\", import.meta.url));\n\n// Must be similar to the module name defined in @workleap/module-federation.\nconst RemoteRegisterModuleName = \"./register\";\nconst RemoteEntryPoint = \"remoteEntry.js\";\n\n// Webpack doesn't export ModuleFederationPlugin typings.\nexport type ModuleFederationPluginOptions = ConstructorParameters<typeof ModuleFederationPlugin>[0];\nexport type ModuleFederationRemotesOption = ModuleFederationPluginOptions[\"remotes\"];\n\nexport type ModuleFederationRuntimePlugins = NonNullable<ModuleFederationPluginOptions[\"runtimePlugins\"]>;\nexport type ModuleFederationShared = NonNullable<ModuleFederationPluginOptions[\"shared\"]>;\n\n// Generally, only the host application should have eager dependencies.\n// For more informations about shared dependencies refer to: https://github.com/patricklafrance/wmf-versioning\nfunction getDefaultSharedDependencies(features: Features, isHost: boolean): ModuleFederationShared {\n return {\n \"react\": {\n singleton: true,\n eager: isHost ? true : undefined,\n // Fixed the warning when `react-i18next` is imported in any remote modules.\n // For more information, refer to: https://github.com/i18next/react-i18next/issues/1697#issuecomment-1821748226.\n requiredVersion: features.i18next ? false : undefined\n },\n \"react-dom\": {\n singleton: true,\n eager: isHost ? true : undefined\n },\n \"@squide/core\": {\n singleton: true,\n eager: isHost ? true : undefined\n },\n \"@squide/module-federation\": {\n singleton: true,\n eager: isHost ? true : undefined\n }\n };\n}\n\nexport type Router = \"react-router\";\n\nexport interface Features {\n router?: Router;\n msw?: boolean;\n i18next?: boolean;\n environmentVariables?: boolean;\n honeycomb?: boolean;\n}\n\n// Generally, only the host application should have eager dependencies.\n// For more informations about shared dependencies refer to: https://github.com/patricklafrance/wmf-versioning\nfunction getReactRouterSharedDependencies(isHost: boolean): ModuleFederationShared {\n return {\n \"react-router\": {\n singleton: true,\n eager: isHost ? true : undefined\n },\n \"@squide/react-router\": {\n singleton: true,\n eager: isHost ? true : undefined\n }\n };\n}\n\nfunction getMswSharedDependency(isHost: boolean): ModuleFederationShared {\n return {\n \"@squide/msw\": {\n singleton: true,\n eager: isHost ? true : undefined\n }\n };\n}\n\nfunction getI18nextSharedDependency(isHost: boolean): ModuleFederationShared {\n return {\n \"i18next\": {\n singleton: true,\n eager: isHost ? true : undefined\n },\n // Not adding as a shared dependency for the moment because it causes the following error:\n // Uncaught (in promise) TypeError: i18next_browser_languagedetector__WEBPACK_IMPORTED_MODULE_3__ is not a constructor\n // \"i18next-browser-languagedetector\": {\n // singleton: true,\n // eager: isHost ? true : undefined\n // },\n \"react-i18next\": {\n singleton: true,\n eager: isHost ? true : undefined\n },\n \"@squide/i18next\": {\n singleton: true,\n eager: isHost ? true : undefined\n }\n };\n}\n\nfunction getEnvironmentVariablesSharedDependencies(isHost: boolean): ModuleFederationShared {\n return {\n \"@squide/env-vars\": {\n singleton: true,\n eager: isHost ? true : undefined\n }\n };\n}\n\nfunction getHoneycombSharedDependencies(isHost: boolean): ModuleFederationShared {\n return {\n \"@opentelemetry/api\": {\n singleton: true,\n eager: isHost ? true : undefined\n }\n };\n}\n\nfunction getFeaturesDependencies(features: Features, isHost: boolean) {\n const {\n router = \"react-router\",\n msw = true,\n i18next,\n environmentVariables = true,\n honeycomb = true\n } = features;\n\n return {\n ...(router === \"react-router\" ? getReactRouterSharedDependencies(isHost) : {}),\n ...(msw ? getMswSharedDependency(isHost) : {}),\n ...(i18next ? getI18nextSharedDependency(isHost) : {}),\n ...(environmentVariables ? getEnvironmentVariablesSharedDependencies(isHost) : {}),\n ...(honeycomb ? getHoneycombSharedDependencies(isHost) : {})\n };\n}\n\nfunction resolveDefaultSharedDependencies(features: Features, isHost: boolean) {\n return {\n ...getDefaultSharedDependencies(features, isHost),\n ...getFeaturesDependencies(features, isHost)\n };\n}\n\nconst forceNamedChunkIdsTransformer: WebpackConfigTransformer = (config: WebpackConfig) => {\n config.optimization = {\n ...(config.optimization ?? {}),\n // Without named chunk ids, there are some Webpack features that do not work\n // when used with Module Federation. One of these feature is using a dynamic import in\n // a remote module.\n chunkIds: \"named\"\n };\n\n return config;\n};\n\nfunction createSetUniqueNameTransformer(uniqueName: string) {\n const transformer: WebpackConfigTransformer = (config: WebpackConfig) => {\n config.output = {\n ...(config.output ?? {}),\n // Every host and remotes must have a \"uniqueName\" for React Refresh to work\n // with Module Federation.\n uniqueName\n };\n\n return config;\n };\n\n return transformer;\n}\n\nfunction resolveEntryFilePath(entryPaths: string[]) {\n for (const entryPath of entryPaths) {\n if (fs.existsSync(path.resolve(applicationDirectory, entryPath))) {\n return entryPath;\n }\n }\n\n return entryPaths[0];\n}\n\n//////////////////////////// Host /////////////////////////////\n\nexport interface RemoteDefinition extends Record<string, unknown> {\n // The name of the remote module.\n name: string;\n // The URL of the remote, ex: http://localhost:8081.\n url: string;\n}\n\nconst HostEntryFilePaths = [\n \"./src/index.ts\",\n \"./src/index.tsx\"\n];\n\nexport interface DefineHostModuleFederationPluginOptions extends ModuleFederationPluginOptions {\n features?: Features;\n}\n\n// The function return type is mandatory, otherwise we got an error TS4058.\nexport function defineHostModuleFederationPluginOptions(remotes: RemoteDefinition[], options: DefineHostModuleFederationPluginOptions): ModuleFederationPluginOptions {\n const {\n features = {},\n shared = {},\n runtimePlugins = [],\n ...rest\n } = options;\n\n const defaultSharedDependencies = resolveDefaultSharedDependencies(features, true);\n\n return {\n name: HostApplicationName,\n // Since Squide modules are only exporting a register function with a standardized API\n // it doesn't requires any typing.\n dts: false,\n // Currently only supporting .js remotes.\n manifest: false,\n remotes: remotes.reduce((acc, x) => {\n // Object reduce are always a mess for typings.\n // eslint-disable-next-line @typescript-eslint/ban-ts-comment\n // @ts-ignore\n acc[x.name] = `${x.name}@${x.url}/${RemoteEntryPoint}`;\n\n return acc;\n }, {}) as ModuleFederationRemotesOption,\n // Deep merging the default shared dependencies with the provided shared dependencies\n // to allow the consumer to easily override a default option of a shared dependency\n // without extending the whole default shared dependencies object.\n shared: merge.all([\n defaultSharedDependencies,\n shared\n ]) as ModuleFederationShared,\n runtimePlugins: [\n path.resolve(packageDirectory, \"./sharedDependenciesResolutionPlugin.js\"),\n path.resolve(packageDirectory, \"./nonCacheableRemoteEntryPlugin.js\"),\n ...runtimePlugins\n ],\n // Commented because it doesn't seems to work, the runtime is still embedded into remotes.\n // experiments: {\n // // The runtime is 100kb minified.\n // federationRuntime: \"hoisted\"\n // },\n ...rest\n };\n}\n\n// Fixing HMR and page reloads when using `publicPath: auto` either in the host or remotes webpack configuration.\n// Otherwise, when a nested page that belongs to a remote module is reloaded, an \"Unexpected token\" error will be thrown.\nfunction trySetHtmlWebpackPluginPublicPath(options: HtmlWebpackPlugin.Options) {\n if (!options.publicPath) {\n options.publicPath = \"/\";\n }\n\n return options;\n}\n\nexport interface DefineDevHostConfigOptions extends Omit<DefineDevConfigOptions, \"htmlWebpackPlugin\" | \"port\"> {\n htmlWebpackPluginOptions?: HtmlWebpackPlugin.Options;\n features?: Features;\n sharedDependencies?: ModuleFederationShared;\n runtimePlugins?: ModuleFederationRuntimePlugins;\n moduleFederationPluginOptions?: ModuleFederationPluginOptions;\n}\n\n// The function return type is mandatory, otherwise we got an error TS4058.\nexport function defineDevHostConfig(swcConfig: SwcConfig, port: number, remotes: RemoteDefinition[], options: DefineDevHostConfigOptions = {}): webpack.Configuration {\n const {\n entry = resolveEntryFilePath(HostEntryFilePaths),\n publicPath = \"auto\",\n cache,\n plugins = [],\n htmlWebpackPluginOptions,\n transformers = [],\n features,\n sharedDependencies,\n runtimePlugins,\n moduleFederationPluginOptions = defineHostModuleFederationPluginOptions(remotes, { features, shared: sharedDependencies, runtimePlugins }),\n ...webpackOptions\n } = options;\n\n return defineDevConfig(swcConfig, {\n entry,\n port,\n publicPath,\n cache,\n htmlWebpackPlugin: trySetHtmlWebpackPluginPublicPath(htmlWebpackPluginOptions ?? defineBuildHtmlWebpackPluginConfig()),\n plugins: [\n ...plugins,\n new ModuleFederationPlugin(moduleFederationPluginOptions)\n ],\n ...webpackOptions,\n transformers: [\n createSetUniqueNameTransformer(HostApplicationName),\n ...transformers\n ]\n });\n}\n\nexport interface DefineBuildHostConfigOptions extends Omit<DefineBuildConfigOptions, \"htmlWebpackPlugin\"> {\n htmlWebpackPluginOptions?: HtmlWebpackPlugin.Options;\n features?: Features;\n sharedDependencies?: ModuleFederationShared;\n runtimePlugins?: ModuleFederationRuntimePlugins;\n moduleFederationPluginOptions?: ModuleFederationPluginOptions;\n}\n\n// The function return type is mandatory, otherwise we got an error TS4058.\nexport function defineBuildHostConfig(swcConfig: SwcConfig, remotes: RemoteDefinition[], options: DefineBuildHostConfigOptions = {}): webpack.Configuration {\n const {\n entry = resolveEntryFilePath(HostEntryFilePaths),\n publicPath = \"auto\",\n plugins = [],\n htmlWebpackPluginOptions,\n transformers = [],\n features,\n sharedDependencies,\n runtimePlugins,\n moduleFederationPluginOptions = defineHostModuleFederationPluginOptions(remotes, { features, shared: sharedDependencies, runtimePlugins }),\n ...webpackOptions\n } = options;\n\n return defineBuildConfig(swcConfig, {\n entry,\n publicPath,\n htmlWebpackPlugin: trySetHtmlWebpackPluginPublicPath(htmlWebpackPluginOptions ?? defineDevHtmlWebpackPluginConfig()),\n plugins: [\n ...plugins,\n new ModuleFederationPlugin(moduleFederationPluginOptions)\n ],\n transformers: [\n forceNamedChunkIdsTransformer,\n createSetUniqueNameTransformer(HostApplicationName),\n ...transformers\n ],\n ...webpackOptions\n });\n}\n\n//////////////////////////// Remote /////////////////////////////\n\nconst RemoteEntryFilePaths = [\n \"./src/register.tsx\",\n \"./src/register.ts\"\n];\n\nexport interface DefineRemoteModuleFederationPluginOptions extends ModuleFederationPluginOptions {\n features?: Features;\n}\n\n// The function return type is mandatory, otherwise we got an error TS4058.\nexport function defineRemoteModuleFederationPluginOptions(applicationName: string, options: DefineRemoteModuleFederationPluginOptions): ModuleFederationPluginOptions {\n const {\n features = {},\n exposes = {},\n shared = {},\n runtimePlugins = [],\n ...rest\n } = options;\n\n const defaultSharedDependencies = resolveDefaultSharedDependencies(features, false);\n\n return {\n name: applicationName,\n // Since Squide modules are only exporting a register function with a standardized API\n // it doesn't requires any typing.\n dts: false,\n // Currently only supporting .js remotes.\n manifest: false,\n filename: RemoteEntryPoint,\n exposes: {\n [RemoteRegisterModuleName]: \"./src/register\",\n ...exposes\n },\n // Deep merging the default shared dependencies with the provided shared dependencies\n // to allow the consumer to easily override a default option of a shared dependency\n // without extending the whole default shared dependencies object.\n shared: merge.all([\n defaultSharedDependencies,\n shared\n ]) as ModuleFederationShared,\n runtimePlugins: [\n path.resolve(packageDirectory, \"./sharedDependenciesResolutionPlugin.js\"),\n path.resolve(packageDirectory, \"./nonCacheableRemoteEntryPlugin.js\"),\n ...runtimePlugins\n ],\n // Commented because it doesn't seems to work, the runtime is still embedded into remotes.\n // experiments: {\n // // The runtime is 100kb minified.\n // federationRuntime: \"hoisted\"\n // },\n ...rest\n };\n}\n\nconst devRemoteModuleTransformer: WebpackConfigTransformer = (config: WebpackConfig) => {\n // \"config.devServer\" does exist but webpack types are a messed. It could probably be solved by importing \"webpack-dev-server\"\n // but I would prefer not adding it as a project dependency.\n // eslint-disable-next-line @typescript-eslint/ban-ts-comment\n // @ts-ignore\n config.devServer.headers = {\n // eslint-disable-next-line @typescript-eslint/ban-ts-comment\n // @ts-ignore\n ...(config.devServer.headers ?? {}),\n // Otherwise hot reload in the host failed with a CORS error.\n \"Access-Control-Allow-Origin\": \"*\"\n };\n\n return config;\n};\n\nexport interface DefineDevRemoteModuleConfigOptions extends Omit<DefineDevConfigOptions, \"port\" | \"overlay\"> {\n features?: Features;\n sharedDependencies?: ModuleFederationShared;\n runtimePlugins?: ModuleFederationRuntimePlugins;\n moduleFederationPluginOptions?: ModuleFederationPluginOptions;\n}\n\n// The function return type is mandatory, otherwise we got an error TS4058.\nexport function defineDevRemoteModuleConfig(swcConfig: SwcConfig, applicationName: string, port: number, options: DefineDevRemoteModuleConfigOptions = {}): webpack.Configuration {\n const {\n entry = resolveEntryFilePath(RemoteEntryFilePaths),\n publicPath = \"auto\",\n cache,\n plugins = [],\n htmlWebpackPlugin = false,\n transformers = [],\n features,\n sharedDependencies,\n runtimePlugins,\n moduleFederationPluginOptions = defineRemoteModuleFederationPluginOptions(applicationName, { features, shared: sharedDependencies, runtimePlugins }),\n ...webpackOptions\n } = options;\n\n return defineDevConfig(swcConfig, {\n entry,\n port,\n publicPath,\n cache,\n htmlWebpackPlugin,\n // Disable the error overlay by default for remotes as otherwise every remote module's error overlay will be\n // stack on top of the host application's error overlay.\n overlay: false,\n plugins: [\n ...plugins,\n new ModuleFederationPlugin(moduleFederationPluginOptions)\n ],\n transformers: [\n devRemoteModuleTransformer,\n createSetUniqueNameTransformer(applicationName),\n ...transformers\n ],\n ...webpackOptions\n });\n}\n\nexport interface DefineBuildRemoteModuleConfigOptions extends DefineBuildConfigOptions {\n features?: Features;\n sharedDependencies?: ModuleFederationShared;\n runtimePlugins?: ModuleFederationRuntimePlugins;\n moduleFederationPluginOptions?: ModuleFederationPluginOptions;\n}\n\n// The function return type is mandatory, otherwise we got an error TS4058.\nexport function defineBuildRemoteModuleConfig(swcConfig: SwcConfig, applicationName: string, options: DefineBuildRemoteModuleConfigOptions = {}): webpack.Configuration {\n const {\n entry = resolveEntryFilePath(RemoteEntryFilePaths),\n publicPath = \"auto\",\n plugins = [],\n htmlWebpackPlugin = false,\n transformers = [],\n features,\n sharedDependencies,\n runtimePlugins,\n moduleFederationPluginOptions = defineRemoteModuleFederationPluginOptions(applicationName, { features, shared: sharedDependencies, runtimePlugins }),\n ...webpackOptions\n } = options;\n\n return defineBuildConfig(swcConfig, {\n entry,\n publicPath,\n htmlWebpackPlugin,\n plugins: [\n ...plugins,\n new ModuleFederationPlugin(moduleFederationPluginOptions)\n ],\n transformers: [\n forceNamedChunkIdsTransformer,\n createSetUniqueNameTransformer(applicationName),\n ...transformers\n ],\n ...webpackOptions\n });\n}\n"],"names":["ModuleFederationPlugin","defineBuildConfig","defineBuildHtmlWebpackPluginConfig","defineDevConfig","defineDevHtmlWebpackPluginConfig","merge","fs","path","dirname","url","fileURLToPath","HostApplicationName","applicationDirectory","packageDirectory","URL","RemoteRegisterModuleName","RemoteEntryPoint","getDefaultSharedDependencies","features","isHost","undefined","getReactRouterSharedDependencies","getMswSharedDependency","getI18nextSharedDependency","getEnvironmentVariablesSharedDependencies","getHoneycombSharedDependencies","getFeaturesDependencies","router","msw","i18next","environmentVariables","honeycomb","resolveDefaultSharedDependencies","forceNamedChunkIdsTransformer","config","createSetUniqueNameTransformer","uniqueName","transformer","resolveEntryFilePath","entryPaths","entryPath","HostEntryFilePaths","defineHostModuleFederationPluginOptions","remotes","options","shared","runtimePlugins","rest","defaultSharedDependencies","acc","x","trySetHtmlWebpackPluginPublicPath","defineDevHostConfig","swcConfig","port","entry","publicPath","cache","plugins","htmlWebpackPluginOptions","transformers","sharedDependencies","moduleFederationPluginOptions","webpackOptions","defineBuildHostConfig","RemoteEntryFilePaths","defineRemoteModuleFederationPluginOptions","applicationName","exposes","devRemoteModuleTransformer","defineDevRemoteModuleConfig","htmlWebpackPlugin","defineBuildRemoteModuleConfig"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;AAA6E;AAEuL;AACtO;AAEL;AACiB;AACI;AAEI;AAElD,qGAAqG;AACrG,yDAAyD;AACzD,MAAMY,uBAAuBJ,OAAOA,CAACE,aAAaA,CAAC,YAAY,GAAG;AAClE,MAAMG,mBAAmBJ,sBAAiB,CAAC,IAAIK,IAAI,KAAK,YAAY,GAAG;AAEvE,6EAA6E;AAC7E,MAAMC,2BAA2B;AACjC,MAAMC,mBAAmB;AASzB,uEAAuE;AACvE,8GAA8G;AAC9G,SAASC,6BAA6BC,QAAkB,EAAEC,MAAe;IACrE,OAAO;QACH,SAAS;YACL,WAAW;YACX,OAAOA,SAAS,OAAOC;YACvB,4EAA4E;YAC5E,gHAAgH;YAChH,iBAAiBF,SAAS,OAAO,GAAG,QAAQE;QAChD;QACA,aAAa;YACT,WAAW;YACX,OAAOD,SAAS,OAAOC;QAC3B;QACA,gBAAgB;YACZ,WAAW;YACX,OAAOD,SAAS,OAAOC;QAC3B;QACA,6BAA6B;YACzB,WAAW;YACX,OAAOD,SAAS,OAAOC;QAC3B;IACJ;AACJ;AAYA,uEAAuE;AACvE,8GAA8G;AAC9G,SAASC,iCAAiCF,MAAe;IACrD,OAAO;QACH,gBAAgB;YACZ,WAAW;YACX,OAAOA,SAAS,OAAOC;QAC3B;QACA,wBAAwB;YACpB,WAAW;YACX,OAAOD,SAAS,OAAOC;QAC3B;IACJ;AACJ;AAEA,SAASE,uBAAuBH,MAAe;IAC3C,OAAO;QACH,eAAe;YACX,WAAW;YACX,OAAOA,SAAS,OAAOC;QAC3B;IACJ;AACJ;AAEA,SAASG,2BAA2BJ,MAAe;IAC/C,OAAO;QACH,WAAW;YACP,WAAW;YACX,OAAOA,SAAS,OAAOC;QAC3B;QACA,0FAA0F;QAC1F,sHAAsH;QACtH,wCAAwC;QACxC,uBAAuB;QACvB,uCAAuC;QACvC,KAAK;QACL,iBAAiB;YACb,WAAW;YACX,OAAOD,SAAS,OAAOC;QAC3B;QACA,mBAAmB;YACf,WAAW;YACX,OAAOD,SAAS,OAAOC;QAC3B;IACJ;AACJ;AAEA,SAASI,0CAA0CL,MAAe;IAC9D,OAAO;QACH,oBAAoB;YAChB,WAAW;YACX,OAAOA,SAAS,OAAOC;QAC3B;IACJ;AACJ;AAEA,SAASK,+BAA+BN,MAAe;IACnD,OAAO;QACH,sBAAsB;YAClB,WAAW;YACX,OAAOA,SAAS,OAAOC;QAC3B;IACJ;AACJ;AAEA,SAASM,wBAAwBR,QAAkB,EAAEC,MAAe;IAChE,MAAM,EACFQ,SAAS,cAAc,EACvBC,MAAM,IAAI,EACVC,OAAO,EACPC,uBAAuB,IAAI,EAC3BC,YAAY,IAAI,EACnB,GAAGb;IAEJ,OAAO;QACH,GAAIS,WAAW,iBAAiBN,iCAAiCF,UAAU,CAAC,CAAC;QAC7E,GAAIS,MAAMN,uBAAuBH,UAAU,CAAC,CAAC;QAC7C,GAAIU,UAAUN,2BAA2BJ,UAAU,CAAC,CAAC;QACrD,GAAIW,uBAAuBN,0CAA0CL,UAAU,CAAC,CAAC;QACjF,GAAIY,YAAYN,+BAA+BN,UAAU,CAAC,CAAC;IAC/D;AACJ;AAEA,SAASa,iCAAiCd,QAAkB,EAAEC,MAAe;IACzE,OAAO;QACH,GAAGF,6BAA6BC,UAAUC,OAAO;QACjD,GAAGO,wBAAwBR,UAAUC,OAAO;IAChD;AACJ;AAEA,MAAMc,gCAA0D,CAACC;IAC7DA,OAAO,YAAY,GAAG;QAClB,GAAIA,OAAO,YAAY,IAAI,CAAC,CAAC;QAC7B,4EAA4E;QAC5E,sFAAsF;QACtF,mBAAmB;QACnB,UAAU;IACd;IAEA,OAAOA;AACX;AAEA,SAASC,+BAA+BC,UAAkB;IACtD,MAAMC,cAAwC,CAACH;QAC3CA,OAAO,MAAM,GAAG;YACZ,GAAIA,OAAO,MAAM,IAAI,CAAC,CAAC;YACvB,4EAA4E;YAC5E,0BAA0B;YAC1BE;QACJ;QAEA,OAAOF;IACX;IAEA,OAAOG;AACX;AAEA,SAASC,qBAAqBC,UAAoB;IAC9C,KAAK,MAAMC,aAAaD,WAAY;QAChC,IAAIjC,kBAAa,CAACC,iBAAY,CAACK,sBAAsB4B,aAAa;YAC9D,OAAOA;QACX;IACJ;IAEA,OAAOD,UAAU,CAAC,EAAE;AACxB;AAWA,MAAME,qBAAqB;IACvB;IACA;CACH;AAMD,2EAA2E;AACpE,SAASC,wCAAwCC,OAA2B,EAAEC,OAAgD;IACjI,MAAM,EACF1B,WAAW,CAAC,CAAC,EACb2B,SAAS,CAAC,CAAC,EACXC,iBAAiB,EAAE,EACnB,GAAGC,MACN,GAAGH;IAEJ,MAAMI,4BAA4BhB,iCAAiCd,UAAU;IAE7E,OAAO;QACH,MAAMP,mBAAmBA;QACzB,sFAAsF;QACtF,kCAAkC;QAClC,KAAK;QACL,yCAAyC;QACzC,UAAU;QACV,SAASgC,QAAQ,MAAM,CAAC,CAACM,KAAKC;YAC1B,+CAA+C;YAC/C,6DAA6D;YAC7D,aAAa;YACbD,GAAG,CAACC,EAAE,IAAI,CAAC,GAAG,GAAGA,EAAE,IAAI,CAAC,CAAC,EAAEA,EAAE,GAAG,CAAC,CAAC,EAAElC,kBAAkB;YAEtD,OAAOiC;QACX,GAAG,CAAC;QACJ,qFAAqF;QACrF,mFAAmF;QACnF,kEAAkE;QAClE,QAAQ5C,aAAS,CAAC;YACd2C;YACAH;SACH;QACD,gBAAgB;YACZtC,iBAAY,CAACM,kBAAkB;YAC/BN,iBAAY,CAACM,kBAAkB;eAC5BiC;SACN;QACD,0FAA0F;QAC1F,iBAAiB;QACjB,wCAAwC;QACxC,mCAAmC;QACnC,KAAK;QACL,GAAGC,IAAI;IACX;AACJ;AAEA,iHAAiH;AACjH,yHAAyH;AACzH,SAASI,kCAAkCP,OAAkC;IACzE,IAAI,CAACA,QAAQ,UAAU,EAAE;QACrBA,QAAQ,UAAU,GAAG;IACzB;IAEA,OAAOA;AACX;AAUA,2EAA2E;AACpE,SAASQ,oBAAoBC,SAAoB,EAAEC,IAAY,EAAEX,OAA2B,EAAEC,UAAsC,CAAC,CAAC;IACzI,MAAM,EACFW,QAAQjB,qBAAqBG,mBAAmB,EAChDe,aAAa,MAAM,EACnBC,KAAK,EACLC,UAAU,EAAE,EACZC,wBAAwB,EACxBC,eAAe,EAAE,EACjB1C,QAAQ,EACR2C,kBAAkB,EAClBf,cAAc,EACdgB,gCAAgCpB,wCAAwCC,SAAS;QAAEzB;QAAU,QAAQ2C;QAAoBf;IAAe,EAAE,EAC1I,GAAGiB,gBACN,GAAGnB;IAEJ,OAAOzC,eAAeA,CAACkD,WAAW;QAC9BE;QACAD;QACAE;QACAC;QACA,mBAAmBN,kCAAkCQ,4BAA4BzD,kCAAkCA;QACnH,SAAS;eACFwD;YACH,IAAI1D,sBAAsBA,CAAC8D;SAC9B;QACD,GAAGC,cAAc;QACjB,cAAc;YACV5B,+BAA+BxB,mBAAmBA;eAC/CiD;SACN;IACL;AACJ;AAUA,2EAA2E;AACpE,SAASI,sBAAsBX,SAAoB,EAAEV,OAA2B,EAAEC,UAAwC,CAAC,CAAC;IAC/H,MAAM,EACFW,QAAQjB,qBAAqBG,mBAAmB,EAChDe,aAAa,MAAM,EACnBE,UAAU,EAAE,EACZC,wBAAwB,EACxBC,eAAe,EAAE,EACjB1C,QAAQ,EACR2C,kBAAkB,EAClBf,cAAc,EACdgB,gCAAgCpB,wCAAwCC,SAAS;QAAEzB;QAAU,QAAQ2C;QAAoBf;IAAe,EAAE,EAC1I,GAAGiB,gBACN,GAAGnB;IAEJ,OAAO3C,iBAAiBA,CAACoD,WAAW;QAChCE;QACAC;QACA,mBAAmBL,kCAAkCQ,4BAA4BvD,gCAAgCA;QACjH,SAAS;eACFsD;YACH,IAAI1D,sBAAsBA,CAAC8D;SAC9B;QACD,cAAc;YACV7B;YACAE,+BAA+BxB,mBAAmBA;eAC/CiD;SACN;QACD,GAAGG,cAAc;IACrB;AACJ;AAEA,mEAAmE;AAEnE,MAAME,uBAAuB;IACzB;IACA;CACH;AAMD,2EAA2E;AACpE,SAASC,0CAA0CC,eAAuB,EAAEvB,OAAkD;IACjI,MAAM,EACF1B,WAAW,CAAC,CAAC,EACbkD,UAAU,CAAC,CAAC,EACZvB,SAAS,CAAC,CAAC,EACXC,iBAAiB,EAAE,EACnB,GAAGC,MACN,GAAGH;IAEJ,MAAMI,4BAA4BhB,iCAAiCd,UAAU;IAE7E,OAAO;QACH,MAAMiD;QACN,sFAAsF;QACtF,kCAAkC;QAClC,KAAK;QACL,yCAAyC;QACzC,UAAU;QACV,UAAUnD;QACV,SAAS;YACL,CAACD,yBAAyB,EAAE;YAC5B,GAAGqD,OAAO;QACd;QACA,qFAAqF;QACrF,mFAAmF;QACnF,kEAAkE;QAClE,QAAQ/D,aAAS,CAAC;YACd2C;YACAH;SACH;QACD,gBAAgB;YACZtC,iBAAY,CAACM,kBAAkB;YAC/BN,iBAAY,CAACM,kBAAkB;eAC5BiC;SACN;QACD,0FAA0F;QAC1F,iBAAiB;QACjB,wCAAwC;QACxC,mCAAmC;QACnC,KAAK;QACL,GAAGC,IAAI;IACX;AACJ;AAEA,MAAMsB,6BAAuD,CAACnC;IAC1D,8HAA8H;IAC9H,4DAA4D;IAC5D,6DAA6D;IAC7D,aAAa;IACbA,OAAO,SAAS,CAAC,OAAO,GAAG;QACvB,6DAA6D;QAC7D,aAAa;QACb,GAAIA,OAAO,SAAS,CAAC,OAAO,IAAI,CAAC,CAAC;QAClC,6DAA6D;QAC7D,+BAA+B;IACnC;IAEA,OAAOA;AACX;AASA,2EAA2E;AACpE,SAASoC,4BAA4BjB,SAAoB,EAAEc,eAAuB,EAAEb,IAAY,EAAEV,UAA8C,CAAC,CAAC;IACrJ,MAAM,EACFW,QAAQjB,qBAAqB2B,qBAAqB,EAClDT,aAAa,MAAM,EACnBC,KAAK,EACLC,UAAU,EAAE,EACZa,oBAAoB,KAAK,EACzBX,eAAe,EAAE,EACjB1C,QAAQ,EACR2C,kBAAkB,EAClBf,cAAc,EACdgB,gCAAgCI,0CAA0CC,iBAAiB;QAAEjD;QAAU,QAAQ2C;QAAoBf;IAAe,EAAE,EACpJ,GAAGiB,gBACN,GAAGnB;IAEJ,OAAOzC,eAAeA,CAACkD,WAAW;QAC9BE;QACAD;QACAE;QACAC;QACAc;QACA,4GAA4G;QAC5G,wDAAwD;QACxD,SAAS;QACT,SAAS;eACFb;YACH,IAAI1D,sBAAsBA,CAAC8D;SAC9B;QACD,cAAc;YACVO;YACAlC,+BAA+BgC;eAC5BP;SACN;QACD,GAAGG,cAAc;IACrB;AACJ;AASA,2EAA2E;AACpE,SAASS,8BAA8BnB,SAAoB,EAAEc,eAAuB,EAAEvB,UAAgD,CAAC,CAAC;IAC3I,MAAM,EACFW,QAAQjB,qBAAqB2B,qBAAqB,EAClDT,aAAa,MAAM,EACnBE,UAAU,EAAE,EACZa,oBAAoB,KAAK,EACzBX,eAAe,EAAE,EACjB1C,QAAQ,EACR2C,kBAAkB,EAClBf,cAAc,EACdgB,gCAAgCI,0CAA0CC,iBAAiB;QAAEjD;QAAU,QAAQ2C;QAAoBf;IAAe,EAAE,EACpJ,GAAGiB,gBACN,GAAGnB;IAEJ,OAAO3C,iBAAiBA,CAACoD,WAAW;QAChCE;QACAC;QACAe;QACA,SAAS;eACFb;YACH,IAAI1D,sBAAsBA,CAAC8D;SAC9B;QACD,cAAc;YACV7B;YACAE,+BAA+BgC;eAC5BP;SACN;QACD,GAAGG,cAAc;IACrB;AACJ"}
package/dist/index.d.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  export * from "@workleap/webpack-configs";
2
- export * from "./defineConfig.ts";
2
+ export { defineBuildHostConfig, defineBuildRemoteModuleConfig, defineDevHostConfig, defineDevRemoteModuleConfig, defineHostModuleFederationPluginOptions, defineRemoteModuleFederationPluginOptions, type DefineBuildHostConfigOptions, type DefineBuildRemoteModuleConfigOptions, type DefineDevHostConfigOptions, type DefineDevRemoteModuleConfigOptions, type DefineHostModuleFederationPluginOptions, type DefineRemoteModuleFederationPluginOptions, type Features, type ModuleFederationPluginOptions, type ModuleFederationRemotesOption, type ModuleFederationRuntimePlugins, type ModuleFederationShared, type RemoteDefinition, type Router } from "./defineConfig.ts";
package/dist/index.js CHANGED
@@ -1,9 +1,12 @@
1
+ import { defineBuildHostConfig, defineBuildRemoteModuleConfig, defineDevHostConfig, defineDevRemoteModuleConfig, defineHostModuleFederationPluginOptions, defineRemoteModuleFederationPluginOptions } from "./defineConfig.js";
1
2
  export * from "@workleap/webpack-configs";
2
- export * from "./defineConfig.js";
3
+
4
+ ;// CONCATENATED MODULE: external "./defineConfig.js"
3
5
 
4
6
  ;// CONCATENATED MODULE: ./src/index.ts
5
7
 
6
8
 
7
9
 
10
+ export { defineBuildHostConfig, defineBuildRemoteModuleConfig, defineDevHostConfig, defineDevRemoteModuleConfig, defineHostModuleFederationPluginOptions, defineRemoteModuleFederationPluginOptions };
8
11
 
9
12
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":["webpack://@squide/firefly-webpack-configs/./src/index.ts"],"sourcesContent":["export * from \"@workleap/webpack-configs\";\nexport * from \"./defineConfig.ts\";\n\n"],"names":[],"mappings":";;;;AAA0C;AACR"}
1
+ {"version":3,"file":"index.js","sources":["../src/index.ts"],"sourcesContent":["export * from \"@workleap/webpack-configs\";\nexport {\n defineBuildHostConfig,\n defineBuildRemoteModuleConfig,\n defineDevHostConfig,\n defineDevRemoteModuleConfig,\n defineHostModuleFederationPluginOptions,\n defineRemoteModuleFederationPluginOptions,\n type DefineBuildHostConfigOptions,\n type DefineBuildRemoteModuleConfigOptions,\n type DefineDevHostConfigOptions,\n type DefineDevRemoteModuleConfigOptions,\n type DefineHostModuleFederationPluginOptions,\n type DefineRemoteModuleFederationPluginOptions,\n type Features,\n type ModuleFederationPluginOptions,\n type ModuleFederationRemotesOption,\n type ModuleFederationRuntimePlugins,\n type ModuleFederationShared,\n type RemoteDefinition,\n type Router\n} from \"./defineConfig.ts\";\n\n"],"names":["defineBuildHostConfig","defineBuildRemoteModuleConfig","defineDevHostConfig","defineDevRemoteModuleConfig","defineHostModuleFederationPluginOptions","defineRemoteModuleFederationPluginOptions"],"mappings":";;;;;;AAA0C;AAqBf"}
@@ -14,7 +14,7 @@ const nonCacheableRemoteEntryPlugin_plugin = ()=>{
14
14
  }
15
15
  };
16
16
  };
17
- /* ESM default export */ const nonCacheableRemoteEntryPlugin = (nonCacheableRemoteEntryPlugin_plugin);
17
+ /* export default */ const nonCacheableRemoteEntryPlugin = (nonCacheableRemoteEntryPlugin_plugin);
18
18
 
19
19
  export { nonCacheableRemoteEntryPlugin as default };
20
20
 
@@ -1 +1 @@
1
- {"version":3,"file":"nonCacheableRemoteEntryPlugin.js","sources":["webpack://@squide/firefly-webpack-configs/./src/nonCacheableRemoteEntryPlugin.ts"],"sourcesContent":["import type { FederationRuntimePlugin } from \"@module-federation/enhanced/runtime\";\n\nconst plugin: () => FederationRuntimePlugin = () => {\n return {\n name: \"non-cacheable-remote-entry-plugin\",\n createScript: function ({ url }) {\n const element = document.createElement(\"script\");\n\n // Adding a timestamp to make sure the remote entry points are never cached.\n // View: https://github.com/module-federation/module-federation-examples/issues/566.\n element.src = `${url}?t=${Date.now()}`;\n element.type = \"text/javascript\";\n element.async = true;\n\n return element;\n }\n };\n};\n\nexport default plugin;\n"],"names":["plugin","url","element","document","Date"],"mappings":";;AAEA,MAAMA,oCAAMA,GAAkC;IAC1C,OAAO;QACH,MAAM;QACN,cAAc,SAAU,EAAEC,GAAG,EAAE;YAC3B,MAAMC,UAAUC,SAAS,aAAa,CAAC;YAEvC,4EAA4E;YAC5E,oFAAoF;YACpFD,QAAQ,GAAG,GAAG,GAAGD,IAAI,GAAG,EAAEG,KAAK,GAAG,IAAI;YACtCF,QAAQ,IAAI,GAAG;YACfA,QAAQ,KAAK,GAAG;YAEhB,OAAOA;QACX;IACJ;AACJ;AAEA,gEAAeF,oCAAMA,EAAC"}
1
+ {"version":3,"file":"nonCacheableRemoteEntryPlugin.js","sources":["../src/nonCacheableRemoteEntryPlugin.ts"],"sourcesContent":["import type { FederationRuntimePlugin } from \"@module-federation/enhanced/runtime\";\n\nconst plugin: () => FederationRuntimePlugin = () => {\n return {\n name: \"non-cacheable-remote-entry-plugin\",\n createScript: function({ url }) {\n const element = document.createElement(\"script\");\n\n // Adding a timestamp to make sure the remote entry points are never cached.\n // View: https://github.com/module-federation/module-federation-examples/issues/566.\n element.src = `${url}?t=${Date.now()}`;\n element.type = \"text/javascript\";\n element.async = true;\n\n return element;\n }\n };\n};\n\nexport default plugin;\n"],"names":["plugin","url","element","document","Date"],"mappings":";;AAEA,MAAMA,oCAAMA,GAAkC;IAC1C,OAAO;QACH,MAAM;QACN,cAAc,SAAS,EAAEC,GAAG,EAAE;YAC1B,MAAMC,UAAUC,SAAS,aAAa,CAAC;YAEvC,4EAA4E;YAC5E,oFAAoF;YACpFD,QAAQ,GAAG,GAAG,GAAGD,IAAI,GAAG,EAAEG,KAAK,GAAG,IAAI;YACtCF,QAAQ,IAAI,GAAG;YACfA,QAAQ,KAAK,GAAG;YAEhB,OAAOA;QACX;IACJ;AACJ;AAEA,4DAAeF,oCAAMA,EAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"shared.js","sources":["webpack://@squide/firefly-webpack-configs/./src/shared.ts"],"sourcesContent":["// Hardcoded to \"host\" because of the \"sharedDependenciesResolutionPlugin\" plugin.\nexport const HostApplicationName = \"host\";\n"],"names":["HostApplicationName"],"mappings":";;AAAA,kFAAkF;AAC3E,MAAMA,sBAAsB,OAAO"}
1
+ {"version":3,"file":"shared.js","sources":["../src/shared.ts"],"sourcesContent":["// Hardcoded to \"host\" because of the \"sharedDependenciesResolutionPlugin\" plugin.\nexport const HostApplicationName = \"host\";\n"],"names":["HostApplicationName"],"mappings":";;AAAA,kFAAkF;AAC3E,MAAMA,sBAAsB,OAAO"}
@@ -129,7 +129,7 @@ const sharedDependenciesResolutionPlugin_plugin = ()=>{
129
129
  }
130
130
  };
131
131
  };
132
- /* ESM default export */ const sharedDependenciesResolutionPlugin = (sharedDependenciesResolutionPlugin_plugin);
132
+ /* export default */ const sharedDependenciesResolutionPlugin = (sharedDependenciesResolutionPlugin_plugin);
133
133
 
134
134
  export { sharedDependenciesResolutionPlugin as default, resolveSharedDependency };
135
135
 
@@ -1 +1 @@
1
- {"version":3,"file":"sharedDependenciesResolutionPlugin.js","sources":["webpack://@squide/firefly-webpack-configs/./src/sharedDependenciesResolutionPlugin.ts"],"sourcesContent":["/*\nThis custom share dependency resolution strategy ensure that only the host app can ask for a new major version of a library.\nOtherwise, any remote can request for an higher non-major version.\n\nExamples:\n\nhost: 2.0\nremote-1: 2.1 <-----\nremote-2: 2.0\n\nhost: 2.0 <-----\nremote-1: 3.1\nremote-2: 2.0\n\nhost: 2.0\nremote-1: 3.1\nremote-2: 2.1 <-----\n\nhost: >2.0\nremote-1: 3.1\nremote-2: 2.1 <-----\n*/\n\nimport type { FederationHost, FederationRuntimePlugin } from \"@module-federation/enhanced/runtime\";\nimport { minVersion, parse, rcompare } from \"semver\";\nimport { HostApplicationName } from \"./shared.ts\";\n\ntype Shared = FederationHost[\"shareScopeMap\"][string][string][string];\n\n// Toggle to \"true\" to facilitate the debugging of this plugin.\nconst isDebug = false;\n\nfunction log(...args: unknown[]) {\n if (isDebug) {\n console.log(...args);\n }\n}\n\nfunction findHighestVersionForMajor(entries: Shared[], major: number) {\n return entries.find(x => {\n return parse(x.version)!.major === major;\n })!;\n}\n\ninterface ResolveSharedDependencyResult {\n resolvedEntry: Shared;\n highestVersionEntry: Shared;\n}\n\n// The return type is required otherwise we get the following error: error TS2742: The inferred type of 'resolveSharedDependency' cannot be named without a reference to.\nexport function resolveSharedDependency(pkgName: string, entries: Shared[], logFct: (...rest: unknown[]) => void = () => {}): ResolveSharedDependencyResult {\n const cleanedEntries = entries.map(x => ({\n ...x,\n // Removing any special characters like >,>=,^,~ etc...\n version: minVersion(x.version)!.version\n }));\n\n // From higher to lower versions.\n const sortedEntries = cleanedEntries.sort((x, y) => rcompare(x.version, y.version));\n\n logFct(\"[squide] Sorted the entries by version from higher to lower\", sortedEntries);\n\n const highestVersionEntry = sortedEntries[0];\n\n logFct(`[squide] ${pkgName} highest requested version is`, highestVersionEntry.version, highestVersionEntry);\n\n // The host is always right!\n if (highestVersionEntry.from === HostApplicationName) {\n logFct(\"[squide] %cThis is the host version%c, great, resolving to:\", \"color: black; background-color: pink;\", \"\", highestVersionEntry.version, highestVersionEntry);\n\n return {\n resolvedEntry: highestVersionEntry,\n highestVersionEntry: highestVersionEntry\n };\n }\n\n logFct(`[squide] ${pkgName} Highest requested version is not from the host.`);\n\n const hostEntry = sortedEntries.find(x => x.from === HostApplicationName);\n\n // Found nothing, that's odd but let's not break the app for this.\n if (!hostEntry) {\n logFct(`[squide] The host is not requesting any version of ${pkgName}, %caborting%c.`, \"color: black; background-color: pink;\", \"\");\n\n return {\n resolvedEntry: highestVersionEntry,\n highestVersionEntry: highestVersionEntry\n };\n }\n\n logFct(`[squide] ${pkgName} version requested by the host is:`, hostEntry.version, hostEntry);\n\n const parsedHighestVersion = parse(highestVersionEntry.version)!;\n const parsedHostVersion = parse(hostEntry.version)!;\n\n // Major versions should always be introduced by the host application.\n if (parsedHighestVersion.major === parsedHostVersion.major) {\n logFct(`[squide] Resolving to %c${parsedHighestVersion.major}%c.`, \"color: black; background-color: pink;\", \"\");\n\n return {\n resolvedEntry: highestVersionEntry,\n highestVersionEntry: highestVersionEntry\n };\n }\n\n logFct(\"[squide] The major number of the highest requested version is higher than the major number of the version requested by the host, looking for another version to resolve to.\");\n\n // Start at the second entry since the first entry is the current higher version entry.\n // The result could either be the actual host entry or any other entry that is higher than the version requested\n // by the host, but match the host entry major version number.\n const fallbackEntry = findHighestVersionForMajor(sortedEntries.splice(1), parsedHostVersion.major);\n\n logFct(`[squide] The %chighest requested version%c for ${pkgName} that is in-range with the requested host major version number is:`, \"color: black; background-color: pink;\", \"\", fallbackEntry.version, fallbackEntry);\n\n return {\n resolvedEntry: fallbackEntry,\n highestVersionEntry: highestVersionEntry\n };\n}\n\nconst plugin: () => FederationRuntimePlugin = () => {\n return {\n name: \"shared-dependencies-resolution-plugin\",\n resolveShare: function (args) {\n const { shareScopeMap, scope, pkgName } = args;\n\n log(`[squide] Resolving ${pkgName}:`, args);\n\n // This custom strategy only applies to singleton shared dependencies.\n const entries = Object.values(shareScopeMap[scope][pkgName]).filter(x => {\n return (\n // Temporary check until all the remotes on Webpack Module Federation has been updated to Module Federation 2.0.\n // eslint-disable-next-line @typescript-eslint/ban-ts-comment\n // @ts-ignore\n x.singleton ||\n (x.shareConfig?.singleton)\n );\n });\n\n // Not a singleton dependency.\n if (entries.length === 0) {\n log(`[squide] ${pkgName} is not a singleton dependency, aborting.`);\n\n return args;\n }\n\n // If there's only one version entry, then it means that everyone is requesting the same version\n // of the dependency.\n if (entries.length <= 1) {\n log(`[squide] There's only one version requested for ${pkgName}, resolving to:`, entries[0].version, entries[0]);\n\n return args;\n }\n\n args.resolver = () => {\n log(`[squide] There's %cmore than one requested version%c for ${pkgName}:`, \"color: black; background-color: pink;\", \"\", entries.length, shareScopeMap[scope][pkgName]);\n\n const { resolvedEntry, highestVersionEntry } = resolveSharedDependency(pkgName, entries, log);\n\n if (resolvedEntry.version !== highestVersionEntry.version) {\n console.log(`%c[squide] \"${highestVersionEntry.from}\" requested version \"${highestVersionEntry.version}\" of \"${pkgName}\". This version is higher than the major number of the version requested by the host for this dependency (${resolvedEntry.version}). The version for \"${pkgName}\" has been forced to \"${resolvedEntry.version}\".`, \"color: white; background-color: red;\");\n }\n\n return resolvedEntry;\n };\n\n return args;\n }\n };\n};\n\nexport default plugin;\n"],"names":["minVersion","parse","rcompare","HostApplicationName","isDebug","log","args","console","findHighestVersionForMajor","entries","major","x","resolveSharedDependency","pkgName","logFct","cleanedEntries","sortedEntries","y","highestVersionEntry","hostEntry","parsedHighestVersion","parsedHostVersion","fallbackEntry","plugin","shareScopeMap","scope","Object","resolvedEntry"],"mappings":"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"}
1
+ {"version":3,"file":"sharedDependenciesResolutionPlugin.js","sources":["../src/sharedDependenciesResolutionPlugin.ts"],"sourcesContent":["/*\nThis custom share dependency resolution strategy ensure that only the host app can ask for a new major version of a library.\nOtherwise, any remote can request for an higher non-major version.\n\nExamples:\n\nhost: 2.0\nremote-1: 2.1 <-----\nremote-2: 2.0\n\nhost: 2.0 <-----\nremote-1: 3.1\nremote-2: 2.0\n\nhost: 2.0\nremote-1: 3.1\nremote-2: 2.1 <-----\n\nhost: >2.0\nremote-1: 3.1\nremote-2: 2.1 <-----\n*/\n\nimport type { FederationHost, FederationRuntimePlugin } from \"@module-federation/enhanced/runtime\";\nimport { minVersion, parse, rcompare } from \"semver\";\nimport { HostApplicationName } from \"./shared.ts\";\n\ntype Shared = FederationHost[\"shareScopeMap\"][string][string][string];\n\n// Toggle to \"true\" to facilitate the debugging of this plugin.\nconst isDebug = false;\n\nfunction log(...args: unknown[]) {\n if (isDebug) {\n console.log(...args);\n }\n}\n\nfunction findHighestVersionForMajor(entries: Shared[], major: number) {\n return entries.find(x => {\n return parse(x.version)!.major === major;\n })!;\n}\n\ninterface ResolveSharedDependencyResult {\n resolvedEntry: Shared;\n highestVersionEntry: Shared;\n}\n\n// The return type is required otherwise we get the following error: error TS2742: The inferred type of 'resolveSharedDependency' cannot be named without a reference to.\nexport function resolveSharedDependency(pkgName: string, entries: Shared[], logFct: (...rest: unknown[]) => void = () => {}): ResolveSharedDependencyResult {\n const cleanedEntries = entries.map(x => ({\n ...x,\n // Removing any special characters like >,>=,^,~ etc...\n version: minVersion(x.version)!.version\n }));\n\n // From higher to lower versions.\n const sortedEntries = cleanedEntries.sort((x, y) => rcompare(x.version, y.version));\n\n logFct(\"[squide] Sorted the entries by version from higher to lower\", sortedEntries);\n\n const highestVersionEntry = sortedEntries[0];\n\n logFct(`[squide] ${pkgName} highest requested version is`, highestVersionEntry.version, highestVersionEntry);\n\n // The host is always right!\n if (highestVersionEntry.from === HostApplicationName) {\n logFct(\"[squide] %cThis is the host version%c, great, resolving to:\", \"color: black; background-color: pink;\", \"\", highestVersionEntry.version, highestVersionEntry);\n\n return {\n resolvedEntry: highestVersionEntry,\n highestVersionEntry: highestVersionEntry\n };\n }\n\n logFct(`[squide] ${pkgName} Highest requested version is not from the host.`);\n\n const hostEntry = sortedEntries.find(x => x.from === HostApplicationName);\n\n // Found nothing, that's odd but let's not break the app for this.\n if (!hostEntry) {\n logFct(`[squide] The host is not requesting any version of ${pkgName}, %caborting%c.`, \"color: black; background-color: pink;\", \"\");\n\n return {\n resolvedEntry: highestVersionEntry,\n highestVersionEntry: highestVersionEntry\n };\n }\n\n logFct(`[squide] ${pkgName} version requested by the host is:`, hostEntry.version, hostEntry);\n\n const parsedHighestVersion = parse(highestVersionEntry.version)!;\n const parsedHostVersion = parse(hostEntry.version)!;\n\n // Major versions should always be introduced by the host application.\n if (parsedHighestVersion.major === parsedHostVersion.major) {\n logFct(`[squide] Resolving to %c${parsedHighestVersion.major}%c.`, \"color: black; background-color: pink;\", \"\");\n\n return {\n resolvedEntry: highestVersionEntry,\n highestVersionEntry: highestVersionEntry\n };\n }\n\n logFct(\"[squide] The major number of the highest requested version is higher than the major number of the version requested by the host, looking for another version to resolve to.\");\n\n // Start at the second entry since the first entry is the current higher version entry.\n // The result could either be the actual host entry or any other entry that is higher than the version requested\n // by the host, but match the host entry major version number.\n const fallbackEntry = findHighestVersionForMajor(sortedEntries.splice(1), parsedHostVersion.major);\n\n logFct(`[squide] The %chighest requested version%c for ${pkgName} that is in-range with the requested host major version number is:`, \"color: black; background-color: pink;\", \"\", fallbackEntry.version, fallbackEntry);\n\n return {\n resolvedEntry: fallbackEntry,\n highestVersionEntry: highestVersionEntry\n };\n}\n\nconst plugin: () => FederationRuntimePlugin = () => {\n return {\n name: \"shared-dependencies-resolution-plugin\",\n resolveShare: function(args) {\n const { shareScopeMap, scope, pkgName } = args;\n\n log(`[squide] Resolving ${pkgName}:`, args);\n\n // This custom strategy only applies to singleton shared dependencies.\n const entries = Object.values(shareScopeMap[scope][pkgName]).filter(x => {\n return (\n // Temporary check until all the remotes on Webpack Module Federation has been updated to Module Federation 2.0.\n // eslint-disable-next-line @typescript-eslint/ban-ts-comment\n // @ts-ignore\n x.singleton ||\n (x.shareConfig?.singleton)\n );\n });\n\n // Not a singleton dependency.\n if (entries.length === 0) {\n log(`[squide] ${pkgName} is not a singleton dependency, aborting.`);\n\n return args;\n }\n\n // If there's only one version entry, then it means that everyone is requesting the same version\n // of the dependency.\n if (entries.length <= 1) {\n log(`[squide] There's only one version requested for ${pkgName}, resolving to:`, entries[0].version, entries[0]);\n\n return args;\n }\n\n args.resolver = () => {\n log(`[squide] There's %cmore than one requested version%c for ${pkgName}:`, \"color: black; background-color: pink;\", \"\", entries.length, shareScopeMap[scope][pkgName]);\n\n const { resolvedEntry, highestVersionEntry } = resolveSharedDependency(pkgName, entries, log);\n\n if (resolvedEntry.version !== highestVersionEntry.version) {\n console.log(`%c[squide] \"${highestVersionEntry.from}\" requested version \"${highestVersionEntry.version}\" of \"${pkgName}\". This version is higher than the major number of the version requested by the host for this dependency (${resolvedEntry.version}). The version for \"${pkgName}\" has been forced to \"${resolvedEntry.version}\".`, \"color: white; background-color: red;\");\n }\n\n return resolvedEntry;\n };\n\n return args;\n }\n };\n};\n\nexport default plugin;\n"],"names":["minVersion","parse","rcompare","HostApplicationName","isDebug","log","args","console","findHighestVersionForMajor","entries","major","x","resolveSharedDependency","pkgName","logFct","cleanedEntries","sortedEntries","y","highestVersionEntry","hostEntry","parsedHighestVersion","parsedHostVersion","fallbackEntry","plugin","shareScopeMap","scope","Object","resolvedEntry"],"mappings":"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"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@squide/firefly-webpack-configs",
3
3
  "author": "Workleap",
4
- "version": "5.1.3",
4
+ "version": "5.1.5",
5
5
  "description": "Webpack configuration helpers for the Squide firefly technology stack.",
6
6
  "license": "Apache-2.0",
7
7
  "repository": {
@@ -27,42 +27,42 @@
27
27
  "CHANGELOG.md"
28
28
  ],
29
29
  "peerDependencies": {
30
- "@swc/core": "^1.13.5",
30
+ "@swc/core": "^1.15.2",
31
31
  "@swc/helpers": "^0.5.17",
32
32
  "@workleap/swc-configs": "^2.3.3",
33
- "browserslist": "^4.27.0",
33
+ "browserslist": "^4.28.0",
34
34
  "postcss": "^8.5.3",
35
- "webpack": "^5.102.1",
35
+ "webpack": "^5.103.0",
36
36
  "webpack-dev-server": "^5.2.2"
37
37
  },
38
38
  "dependencies": {
39
39
  "@module-federation/enhanced": "0.11.4",
40
40
  "@workleap/webpack-configs": "^1.6.3",
41
41
  "deepmerge": "^4.3.1",
42
- "html-webpack-plugin": "^5.6.4",
42
+ "html-webpack-plugin": "^5.6.5",
43
43
  "semver": "^7.7.3"
44
44
  },
45
45
  "devDependencies": {
46
- "@eslint/js": "9.38.0",
47
- "@rsbuild/core": "1.5.17",
48
- "@rslib/core": "0.16.1",
49
- "@types/node": "24.9.1",
46
+ "@eslint/js": "9.39.1",
47
+ "@rsbuild/core": "1.6.7",
48
+ "@rslib/core": "0.18.0",
49
+ "@types/node": "24.10.1",
50
50
  "@types/semver": "7.7.1",
51
- "@typescript-eslint/parser": "8.46.2",
52
- "@workleap/eslint-configs": "0.0.5",
51
+ "@typescript-eslint/parser": "8.47.0",
52
+ "@workleap/eslint-configs": "1.1.5",
53
53
  "@workleap/rslib-configs": "1.1.3",
54
54
  "@workleap/typescript-configs": "3.0.7",
55
- "eslint": "9.38.0",
55
+ "eslint": "9.39.1",
56
56
  "typescript": "5.9.3",
57
- "typescript-eslint": "8.46.2",
58
- "vitest": "4.0.2",
59
- "webpack": "5.102.1",
57
+ "typescript-eslint": "8.47.0",
58
+ "vitest": "4.0.10",
59
+ "webpack": "5.103.0",
60
60
  "webpack-dev-server": "5.2.2"
61
61
  },
62
62
  "scripts": {
63
63
  "dev": "rslib build --watch --config ./rslib.dev.ts",
64
64
  "build": "rslib build --config ./rslib.build.ts",
65
- "eslint": "eslint . --max-warnings=-0 --cache --cache-location node_modules/.cache/eslint",
65
+ "eslint": "eslint . --max-warnings=0 --cache --cache-location node_modules/.cache/eslint",
66
66
  "typecheck": "tsc",
67
67
  "test": "vitest --config vitest.config.ts --no-watch"
68
68
  }
@@ -119,21 +119,9 @@ function getEnvironmentVariablesSharedDependencies(isHost: boolean): ModuleFeder
119
119
 
120
120
  function getHoneycombSharedDependencies(isHost: boolean): ModuleFederationShared {
121
121
  return {
122
- "@honeycombio/opentelemetry-web": {
123
- singleton: true,
124
- eager: isHost ? true : undefined
125
- },
126
122
  "@opentelemetry/api": {
127
123
  singleton: true,
128
124
  eager: isHost ? true : undefined
129
- },
130
- "@opentelemetry/auto-instrumentations-web": {
131
- singleton: true,
132
- eager: isHost ? true : undefined
133
- },
134
- "@squide/firefly-honeycomb": {
135
- singleton: true,
136
- eager: isHost ? true : undefined
137
125
  }
138
126
  };
139
127
  }
@@ -143,8 +131,8 @@ function getFeaturesDependencies(features: Features, isHost: boolean) {
143
131
  router = "react-router",
144
132
  msw = true,
145
133
  i18next,
146
- environmentVariables,
147
- honeycomb
134
+ environmentVariables = true,
135
+ honeycomb = true
148
136
  } = features;
149
137
 
150
138
  return {
@@ -202,7 +190,7 @@ function resolveEntryFilePath(entryPaths: string[]) {
202
190
 
203
191
  //////////////////////////// Host /////////////////////////////
204
192
 
205
- export interface RemoteDefinition {
193
+ export interface RemoteDefinition extends Record<string, unknown> {
206
194
  // The name of the remote module.
207
195
  name: string;
208
196
  // The URL of the remote, ex: http://localhost:8081.
package/src/index.ts CHANGED
@@ -1,3 +1,23 @@
1
1
  export * from "@workleap/webpack-configs";
2
- export * from "./defineConfig.ts";
2
+ export {
3
+ defineBuildHostConfig,
4
+ defineBuildRemoteModuleConfig,
5
+ defineDevHostConfig,
6
+ defineDevRemoteModuleConfig,
7
+ defineHostModuleFederationPluginOptions,
8
+ defineRemoteModuleFederationPluginOptions,
9
+ type DefineBuildHostConfigOptions,
10
+ type DefineBuildRemoteModuleConfigOptions,
11
+ type DefineDevHostConfigOptions,
12
+ type DefineDevRemoteModuleConfigOptions,
13
+ type DefineHostModuleFederationPluginOptions,
14
+ type DefineRemoteModuleFederationPluginOptions,
15
+ type Features,
16
+ type ModuleFederationPluginOptions,
17
+ type ModuleFederationRemotesOption,
18
+ type ModuleFederationRuntimePlugins,
19
+ type ModuleFederationShared,
20
+ type RemoteDefinition,
21
+ type Router
22
+ } from "./defineConfig.ts";
3
23
 
@@ -3,7 +3,7 @@ import type { FederationRuntimePlugin } from "@module-federation/enhanced/runtim
3
3
  const plugin: () => FederationRuntimePlugin = () => {
4
4
  return {
5
5
  name: "non-cacheable-remote-entry-plugin",
6
- createScript: function ({ url }) {
6
+ createScript: function({ url }) {
7
7
  const element = document.createElement("script");
8
8
 
9
9
  // Adding a timestamp to make sure the remote entry points are never cached.
@@ -121,7 +121,7 @@ export function resolveSharedDependency(pkgName: string, entries: Shared[], logF
121
121
  const plugin: () => FederationRuntimePlugin = () => {
122
122
  return {
123
123
  name: "shared-dependencies-resolution-plugin",
124
- resolveShare: function (args) {
124
+ resolveShare: function(args) {
125
125
  const { shareScopeMap, scope, pkgName } = args;
126
126
 
127
127
  log(`[squide] Resolving ${pkgName}:`, args);