@nx/react 19.5.0 → 19.5.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/react",
3
- "version": "19.5.0",
3
+ "version": "19.5.2",
4
4
  "private": false,
5
5
  "description": "The React plugin for Nx contains executors and generators for managing React applications and libraries within an Nx workspace. It provides:\n\n\n- Integration with libraries such as Jest, Vitest, Playwright, Cypress, and Storybook.\n\n- Generators for applications, libraries, components, hooks, and more.\n\n- Library build support for publishing packages to npm or other registries.\n\n- Utilities for automatic workspace refactoring.",
6
6
  "repository": {
@@ -39,11 +39,11 @@
39
39
  "minimatch": "9.0.3",
40
40
  "tslib": "^2.3.0",
41
41
  "@module-federation/enhanced": "~0.2.3",
42
- "@nx/devkit": "19.5.0",
43
- "@nx/js": "19.5.0",
44
- "@nx/eslint": "19.5.0",
45
- "@nx/web": "19.5.0",
46
- "@nrwl/react": "19.5.0"
42
+ "@nx/devkit": "19.5.2",
43
+ "@nx/js": "19.5.2",
44
+ "@nx/eslint": "19.5.2",
45
+ "@nx/web": "19.5.2",
46
+ "@nrwl/react": "19.5.2"
47
47
  },
48
48
  "publishConfig": {
49
49
  "access": "public"
@@ -12,16 +12,6 @@ type ModuleFederationDevServerOptions = WebDevServerOptions & {
12
12
  staticRemotesPort?: number;
13
13
  pathToManifestFile?: string;
14
14
  };
15
- type StaticRemoteConfig = {
16
- basePath: string;
17
- outputPath: string;
18
- urlSegment: string;
19
- };
20
- type StaticRemotesConfig = {
21
- remotes: string[];
22
- config: Record<string, StaticRemoteConfig> | undefined;
23
- };
24
- export declare function parseStaticRemotesConfig(staticRemotes: string[] | undefined, context: ExecutorContext): StaticRemotesConfig;
25
15
  export default function moduleFederationDevServer(options: ModuleFederationDevServerOptions, context: ExecutorContext): AsyncIterableIterator<{
26
16
  success: boolean;
27
17
  baseUrl?: string;
@@ -1,6 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.parseStaticRemotesConfig = parseStaticRemotesConfig;
4
3
  exports.default = moduleFederationDevServer;
5
4
  const devkit_1 = require("@nx/devkit");
6
5
  const dev_server_impl_1 = require("@nx/webpack/src/executors/dev-server/dev-server.impl");
@@ -14,6 +13,8 @@ const node_path_1 = require("node:path");
14
13
  const node_fs_1 = require("node:fs");
15
14
  const fs_1 = require("fs");
16
15
  const path_1 = require("path");
16
+ const start_remote_proxies_1 = require("@nx/webpack/src/utils/module-federation/start-remote-proxies");
17
+ const parse_static_remotes_config_1 = require("@nx/webpack/src/utils/module-federation/parse-static-remotes-config");
17
18
  function getBuildOptions(buildTarget, context) {
18
19
  const target = (0, devkit_1.parseTargetString)(buildTarget, context);
19
20
  const buildOptions = (0, devkit_1.readTargetOptions)(target, context);
@@ -22,6 +23,10 @@ function getBuildOptions(buildTarget, context) {
22
23
  };
23
24
  }
24
25
  function startStaticRemotesFileServer(staticRemotesConfig, context, options) {
26
+ if (!staticRemotesConfig.remotes ||
27
+ staticRemotesConfig.remotes.length === 0) {
28
+ return;
29
+ }
25
30
  let shouldMoveToCommonLocation = false;
26
31
  let commonOutputDirectory;
27
32
  for (const app of staticRemotesConfig.remotes) {
@@ -56,6 +61,7 @@ function startStaticRemotesFileServer(staticRemotesConfig, context, options) {
56
61
  ssl: options.ssl,
57
62
  sslCert: options.sslCert,
58
63
  sslKey: options.sslKey,
64
+ cacheSeconds: -1,
59
65
  }, context);
60
66
  return staticRemotesIter;
61
67
  }
@@ -137,23 +143,9 @@ async function buildStaticRemotes(staticRemotesConfig, nxBin, context, options)
137
143
  process.on('SIGTERM', () => staticProcess.kill('SIGTERM'));
138
144
  process.on('exit', () => staticProcess.kill('SIGTERM'));
139
145
  });
140
- }
141
- function parseStaticRemotesConfig(staticRemotes, context) {
142
- if (!staticRemotes?.length) {
143
- return { remotes: [], config: undefined };
144
- }
145
- const config = {};
146
- for (const app of staticRemotes) {
147
- const outputPath = context.projectGraph.nodes[app].data.targets['build'].options.outputPath;
148
- const basePath = (0, node_path_1.dirname)(outputPath);
149
- const urlSegment = (0, node_path_1.basename)(outputPath);
150
- config[app] = { basePath, outputPath, urlSegment };
151
- }
152
- return { remotes: staticRemotes, config };
146
+ return mappedLocationOfRemotes;
153
147
  }
154
148
  async function* moduleFederationDevServer(options, context) {
155
- const initialStaticRemotesPorts = options.staticRemotesPort;
156
- options.staticRemotesPort ??= options.port + 1;
157
149
  // Force Node to resolve to look for the nx binary that is inside node_modules
158
150
  const nxBin = require.resolve('nx/bin/nx');
159
151
  const currIter = options.static
@@ -163,6 +155,7 @@ async function* moduleFederationDevServer(options, context) {
163
155
  withDeps: false,
164
156
  spa: false,
165
157
  cors: true,
158
+ cacheSeconds: -1,
166
159
  }, context)
167
160
  : (0, dev_server_impl_1.default)(options, context);
168
161
  const p = context.projectsConfigurations.projects[context.projectName];
@@ -188,27 +181,15 @@ async function* moduleFederationDevServer(options, context) {
188
181
  projectGraph: context.projectGraph,
189
182
  root: context.root,
190
183
  }, pathToManifestFile);
191
- if (remotes.devRemotes.length > 0 && !initialStaticRemotesPorts) {
192
- options.staticRemotesPort = options.devRemotes.reduce((portToUse, r) => {
193
- const remoteName = typeof r === 'string' ? r : r.remoteName;
194
- const remotePort = context.projectGraph.nodes[remoteName].data.targets['serve'].options
195
- .port;
196
- if (remotePort >= portToUse) {
197
- return remotePort + 1;
198
- }
199
- else {
200
- return portToUse;
201
- }
202
- }, options.staticRemotesPort);
203
- }
204
- const staticRemotesConfig = parseStaticRemotesConfig(remotes.staticRemotes, context);
205
- await buildStaticRemotes(staticRemotesConfig, nxBin, context, options);
184
+ options.staticRemotesPort ??= remotes.staticRemotePort;
185
+ // Set NX_MF_DEV_REMOTES for the Nx Runtime Library Control Plugin
186
+ process.env.NX_MF_DEV_REMOTES = JSON.stringify(remotes.devRemotes.map((r) => (typeof r === 'string' ? r : r.remoteName)));
187
+ const staticRemotesConfig = (0, parse_static_remotes_config_1.parseStaticRemotesConfig)([...remotes.staticRemotes, ...remotes.dynamicRemotes], context);
188
+ const mappedLocationsOfStaticRemotes = await buildStaticRemotes(staticRemotesConfig, nxBin, context, options);
206
189
  const devRemoteIters = await startRemotes(remotes.devRemotes, context, options, 'serve');
207
- const dynamicRemotesIters = await startRemotes(remotes.dynamicRemotes, context, options, 'serve-static');
208
- const staticRemotesIter = remotes.staticRemotes.length > 0
209
- ? startStaticRemotesFileServer(staticRemotesConfig, context, options)
210
- : undefined;
211
- return yield* (0, async_iterable_1.combineAsyncIterables)(currIter, ...devRemoteIters, ...dynamicRemotesIters, ...(staticRemotesIter ? [staticRemotesIter] : []), (0, async_iterable_1.createAsyncIterable)(async ({ next, done }) => {
190
+ const staticRemotesIter = startStaticRemotesFileServer(staticRemotesConfig, context, options);
191
+ (0, start_remote_proxies_1.startRemoteProxies)(staticRemotesConfig, mappedLocationsOfStaticRemotes);
192
+ return yield* (0, async_iterable_1.combineAsyncIterables)(currIter, ...devRemoteIters, ...(staticRemotesIter ? [staticRemotesIter] : []), (0, async_iterable_1.createAsyncIterable)(async ({ next, done }) => {
212
193
  if (!options.isInitialHost) {
213
194
  done();
214
195
  return;
@@ -66,6 +66,8 @@ async function* moduleFederationSsrDevServer(options, context) {
66
66
  : Array.isArray(options.devRemotes)
67
67
  ? options.devRemotes
68
68
  : [options.devRemotes];
69
+ // Set NX_MF_DEV_REMOTES for the Nx Runtime Library Control Plugin
70
+ process.env.NX_MF_DEV_REMOTES = JSON.stringify(devServeApps);
69
71
  for (const app of knownRemotes) {
70
72
  const [appName] = Array.isArray(app) ? app : [app];
71
73
  const isDev = devServeApps.includes(appName);
@@ -45,7 +45,11 @@ function addModuleFederationFiles(host, options, defaultRemoteManifest) {
45
45
  processWebpackConfig(options, host, 'webpack.config.prod.js');
46
46
  processWebpackConfig(options, host, 'webpack.config.prod.ts');
47
47
  if (!host.exists(pathToMFManifest)) {
48
- host.write(pathToMFManifest, '{}');
48
+ host.write(pathToMFManifest, `{
49
+ ${defaultRemoteManifest
50
+ .map(({ name, port }) => `"${name}": "http://localhost:${port}"`)
51
+ .join(',\n')}
52
+ }`);
49
53
  }
50
54
  }
51
55
  }
@@ -2,9 +2,11 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.addRemoteToDynamicHost = addRemoteToDynamicHost;
4
4
  function addRemoteToDynamicHost(tree, remoteName, remotePort, pathToMfManifest) {
5
- const current = tree.read(pathToMfManifest, 'utf8');
6
- tree.write(pathToMfManifest, JSON.stringify({
7
- ...JSON.parse(current),
8
- [remoteName]: `http://localhost:${remotePort}`,
9
- }));
5
+ if (tree.exists(pathToMfManifest)) {
6
+ const current = tree.read(pathToMfManifest, 'utf8');
7
+ tree.write(pathToMfManifest, JSON.stringify({
8
+ ...JSON.parse(current),
9
+ [remoteName]: `http://localhost:${remotePort}`,
10
+ }));
11
+ }
10
12
  }
@@ -31,7 +31,19 @@ async function withModuleFederationForSSR(options, configOverride) {
31
31
  * Apply user-defined config overrides
32
32
  */
33
33
  ...(configOverride ? configOverride : {}),
34
+ runtimePlugins: process.env.NX_MF_DEV_REMOTES &&
35
+ !options.disableNxRuntimeLibraryControlPlugin
36
+ ? [
37
+ ...(configOverride?.runtimePlugins ?? []),
38
+ require.resolve('@nx/webpack/src/utils/module-federation/plugins/runtime-library-control.plugin.js'),
39
+ ]
40
+ : configOverride?.runtimePlugins,
34
41
  }, {}), sharedLibraries.getReplacementPlugin());
42
+ // The env var is only set from the module-federation-dev-server
43
+ // Attach the runtime plugin
44
+ config.plugins.push(new (require('webpack').DefinePlugin)({
45
+ 'process.env.NX_MF_DEV_REMOTES': process.env.NX_MF_DEV_REMOTES,
46
+ }));
35
47
  return config;
36
48
  };
37
49
  }
@@ -52,7 +52,19 @@ async function withModuleFederation(options, configOverride) {
52
52
  * Apply user-defined config overrides
53
53
  */
54
54
  ...(configOverride ? configOverride : {}),
55
+ runtimePlugins: process.env.NX_MF_DEV_REMOTES &&
56
+ !options.disableNxRuntimeLibraryControlPlugin
57
+ ? [
58
+ ...(configOverride?.runtimePlugins ?? []),
59
+ require.resolve('@nx/webpack/src/utils/module-federation/plugins/runtime-library-control.plugin.js'),
60
+ ]
61
+ : configOverride?.runtimePlugins,
55
62
  }), sharedLibraries.getReplacementPlugin());
63
+ // The env var is only set from the module-federation-dev-server
64
+ // Attach the runtime plugin
65
+ config.plugins.push(new (require('webpack').DefinePlugin)({
66
+ 'process.env.NX_MF_DEV_REMOTES': process.env.NX_MF_DEV_REMOTES,
67
+ }));
56
68
  return config;
57
69
  };
58
70
  }
@@ -5,7 +5,7 @@ const devkit_1 = require("@nx/devkit");
5
5
  function addMfEnvToTargetDefaultInputs(tree) {
6
6
  const nxJson = (0, devkit_1.readNxJson)(tree);
7
7
  const webpackExecutor = '@nx/webpack:webpack';
8
- const mfEnvVar = 'NX_MF_DEV_SERVER_STATIC_REMOTES';
8
+ const mfEnvVar = 'NX_MF_DEV_REMOTES';
9
9
  nxJson.targetDefaults ??= {};
10
10
  nxJson.targetDefaults[webpackExecutor] ??= {};
11
11
  nxJson.targetDefaults[webpackExecutor].inputs ??= [