nx 22.1.0-canary.20251106-e9146c7 → 22.1.0-canary.20251110-73ecb30

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.
Files changed (29) hide show
  1. package/executors.json +16 -16
  2. package/generators.json +13 -13
  3. package/migrations.json +143 -143
  4. package/package.json +15 -11
  5. package/presets/npm.json +4 -4
  6. package/schemas/nx-schema.json +1285 -1285
  7. package/schemas/project-schema.json +359 -359
  8. package/schemas/workspace-schema.json +165 -165
  9. package/src/ai/set-up-ai-agents/schema.json +31 -31
  10. package/src/command-line/init/init-v2.js +1 -1
  11. package/src/core/graph/main.js +1 -1
  12. package/src/executors/noop/schema.json +8 -8
  13. package/src/executors/run-commands/schema.json +187 -187
  14. package/src/executors/run-script/schema.json +25 -25
  15. package/src/native/index.d.ts +13 -2
  16. package/src/native/nx.wasm32-wasi.wasm +0 -0
  17. package/src/nx-cloud/generators/connect-to-nx-cloud/schema.json +38 -38
  18. package/src/plugins/js/project-graph/build-dependencies/target-project-locator.js +1 -1
  19. package/src/project-graph/plugins/get-plugins.d.ts.map +1 -1
  20. package/src/project-graph/plugins/get-plugins.js +4 -4
  21. package/src/project-graph/plugins/isolation/index.d.ts +1 -1
  22. package/src/project-graph/plugins/isolation/index.d.ts.map +1 -1
  23. package/src/project-graph/plugins/isolation/index.js +2 -2
  24. package/src/project-graph/plugins/isolation/plugin-pool.d.ts +1 -1
  25. package/src/project-graph/plugins/isolation/plugin-pool.d.ts.map +1 -1
  26. package/src/project-graph/plugins/isolation/plugin-pool.js +10 -6
  27. package/src/tasks-runner/process-metrics-service.d.ts +1 -1
  28. package/src/tasks-runner/process-metrics-service.d.ts.map +1 -1
  29. package/src/tasks-runner/process-metrics-service.js +2 -2
@@ -1,4 +1,4 @@
1
1
  import { PluginConfiguration } from '../../../config/nx-json';
2
2
  import type { LoadedNxPlugin } from '../loaded-nx-plugin';
3
- export declare function loadRemoteNxPlugin(plugin: PluginConfiguration, root: string): Promise<[Promise<LoadedNxPlugin>, () => void]>;
3
+ export declare function loadRemoteNxPlugin(plugin: PluginConfiguration, root: string, index?: number): Promise<[Promise<LoadedNxPlugin>, () => void]>;
4
4
  //# sourceMappingURL=plugin-pool.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"plugin-pool.d.ts","sourceRoot":"","sources":["../../../../../../../packages/nx/src/project-graph/plugins/isolation/plugin-pool.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAK9D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AA8C1D,wBAAsB,kBAAkB,CACtC,MAAM,EAAE,mBAAmB,EAC3B,IAAI,EAAE,MAAM,GACX,OAAO,CAAC,CAAC,OAAO,CAAC,cAAc,CAAC,EAAE,MAAM,IAAI,CAAC,CAAC,CAgFhD"}
1
+ {"version":3,"file":"plugin-pool.d.ts","sourceRoot":"","sources":["../../../../../../../packages/nx/src/project-graph/plugins/isolation/plugin-pool.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AAK9D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AA8C1D,wBAAsB,kBAAkB,CACtC,MAAM,EAAE,mBAAmB,EAC3B,IAAI,EAAE,MAAM,EACZ,KAAK,CAAC,EAAE,MAAM,GACb,OAAO,CAAC,CAAC,OAAO,CAAC,cAAc,CAAC,EAAE,MAAM,IAAI,CAAC,CAAC,CAuFhD"}
@@ -25,7 +25,7 @@ const MAX_MESSAGE_WAIT = process.env.NX_PLUGIN_NO_TIMEOUTS === 'true'
25
25
  2147483647
26
26
  : 1000 * 60 * MINUTES; // 10 minutes
27
27
  const nxPluginWorkerCache = (global['nxPluginWorkerCache'] ??= new Map());
28
- async function loadRemoteNxPlugin(plugin, root) {
28
+ async function loadRemoteNxPlugin(plugin, root, index) {
29
29
  const cacheKey = JSON.stringify({ plugin, root });
30
30
  if (nxPluginWorkerCache.has(cacheKey)) {
31
31
  return [nxPluginWorkerCache.get(cacheKey), () => { }];
@@ -37,12 +37,16 @@ async function loadRemoteNxPlugin(plugin, root) {
37
37
  // This allows metrics collection when the daemon is not used
38
38
  if (worker.pid) {
39
39
  try {
40
- const { isDaemonEnabled } = await Promise.resolve().then(() => require('../../../daemon/client/client'));
41
- // Only register if daemon is not enabled - when daemon is enabled,
42
- // plugin workers are spawned as children of the daemon and tracked automatically
43
- if (!isDaemonEnabled()) {
40
+ const { isOnDaemon } = await Promise.resolve().then(() => require('../../../daemon/is-on-daemon'));
41
+ /**
42
+ * We can only register the plugin worker as a subprocess of the main CLI
43
+ * when the daemon is not used. Additionally, we can't explcitly register
44
+ * the plugin worker as a subprocess of the daemon, because when on the
45
+ * daemon, we'd get a different instance of the process metrics service.
46
+ */
47
+ if (!isOnDaemon()) {
44
48
  const { getProcessMetricsService } = await Promise.resolve().then(() => require('../../../tasks-runner/process-metrics-service'));
45
- getProcessMetricsService().registerMainCliSubprocess(worker.pid);
49
+ getProcessMetricsService().registerMainCliSubprocess(worker.pid, `${name}${index !== undefined ? ` (${index})` : ''}`);
46
50
  }
47
51
  }
48
52
  catch {
@@ -36,7 +36,7 @@ declare class ProcessMetricsService {
36
36
  /**
37
37
  * Register a subprocess of the main CLI (e.g., plugin worker)
38
38
  */
39
- registerMainCliSubprocess(pid: number): void;
39
+ registerMainCliSubprocess(pid: number, alias?: string): void;
40
40
  /**
41
41
  * Get system information (CPU cores and total memory)
42
42
  */
@@ -1 +1 @@
1
- {"version":3,"file":"process-metrics-service.d.ts","sourceRoot":"","sources":["../../../../../packages/nx/src/tasks-runner/process-metrics-service.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,eAAe,EACf,cAAc,EACd,kBAAkB,EAClB,sBAAsB,EACtB,oBAAoB,EACpB,aAAa,EACb,UAAU,EACX,MAAM,WAAW,CAAC;AAGnB,YAAY,EACV,eAAe,EACf,cAAc,EACd,kBAAkB,EAClB,sBAAsB,EACtB,oBAAoB,EACpB,aAAa,EACb,UAAU,GACX,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG,CAAC,KAAK,EAAE,aAAa,KAAK,IAAI,CAAC;AAE7D;;;;GAIG;AACH,cAAM,qBAAqB;IACzB,OAAO,CAAC,SAAS,CAAwC;IACzD,OAAO,CAAC,iBAAiB,CAAS;;IAmBlC;;;OAGG;IACH,OAAO,CAAC,uBAAuB;IAe/B;;;OAGG;IACH,SAAS,CAAC,QAAQ,EAAE,eAAe,GAAG,IAAI;IA+B1C;;;OAGG;IACH,mBAAmB,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,IAAI;IAQtD;;OAEG;IACH,aAAa,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,EAAE,GAAG,EAAE,MAAM,GAAG,IAAI;IAQpE;;OAEG;IACH,qBAAqB,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAQxC;;OAEG;IACH,yBAAyB,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAQ5C;;OAEG;IACH,aAAa,IAAI,UAAU,GAAG,IAAI;IASlC;;OAEG;IACH,QAAQ,IAAI,IAAI;CAOjB;AAOD;;;GAGG;AACH,wBAAgB,wBAAwB,IAAI,qBAAqB,CAKhE"}
1
+ {"version":3,"file":"process-metrics-service.d.ts","sourceRoot":"","sources":["../../../../../packages/nx/src/tasks-runner/process-metrics-service.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,eAAe,EACf,cAAc,EACd,kBAAkB,EAClB,sBAAsB,EACtB,oBAAoB,EACpB,aAAa,EACb,UAAU,EACX,MAAM,WAAW,CAAC;AAGnB,YAAY,EACV,eAAe,EACf,cAAc,EACd,kBAAkB,EAClB,sBAAsB,EACtB,oBAAoB,EACpB,aAAa,EACb,UAAU,GACX,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG,CAAC,KAAK,EAAE,aAAa,KAAK,IAAI,CAAC;AAE7D;;;;GAIG;AACH,cAAM,qBAAqB;IACzB,OAAO,CAAC,SAAS,CAAwC;IACzD,OAAO,CAAC,iBAAiB,CAAS;;IAmBlC;;;OAGG;IACH,OAAO,CAAC,uBAAuB;IAe/B;;;OAGG;IACH,SAAS,CAAC,QAAQ,EAAE,eAAe,GAAG,IAAI;IA+B1C;;;OAGG;IACH,mBAAmB,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,IAAI;IAQtD;;OAEG;IACH,aAAa,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,EAAE,EAAE,GAAG,EAAE,MAAM,GAAG,IAAI;IAQpE;;OAEG;IACH,qBAAqB,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAQxC;;OAEG;IACH,yBAAyB,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI;IAQ5D;;OAEG;IACH,aAAa,IAAI,UAAU,GAAG,IAAI;IASlC;;OAEG;IACH,QAAQ,IAAI,IAAI;CAOjB;AAOD;;;GAGG;AACH,wBAAgB,wBAAwB,IAAI,qBAAqB,CAKhE"}
@@ -113,9 +113,9 @@ class ProcessMetricsService {
113
113
  /**
114
114
  * Register a subprocess of the main CLI (e.g., plugin worker)
115
115
  */
116
- registerMainCliSubprocess(pid) {
116
+ registerMainCliSubprocess(pid, alias) {
117
117
  try {
118
- this.collector?.registerMainCliSubprocess(pid);
118
+ this.collector?.registerMainCliSubprocess(pid, alias);
119
119
  }
120
120
  catch {
121
121
  // Silent failure - metrics collection is optional