nx 22.7.1 → 22.7.3

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 (51) hide show
  1. package/dist/bin/nx.d.ts +1 -0
  2. package/dist/bin/nx.js +3 -0
  3. package/dist/src/ai/clone-ai-config-repo.js +20 -3
  4. package/dist/src/analytics/analytics.js +10 -1
  5. package/dist/src/command-line/format/format.js +15 -5
  6. package/dist/src/command-line/graph/graph.js +0 -1
  7. package/dist/src/command-line/release/config/use-legacy-versioning.d.ts +2 -0
  8. package/dist/src/command-line/release/config/use-legacy-versioning.js +8 -0
  9. package/dist/src/command-line/report/report.js +0 -1
  10. package/dist/src/config/misc-interfaces.d.ts +6 -0
  11. package/dist/src/config/schema-utils.js +2 -1
  12. package/dist/src/core/graph/main.js +1 -1
  13. package/dist/src/core/graph/styles.css +1 -1
  14. package/dist/src/core/graph/styles.js +1 -1
  15. package/dist/src/daemon/server/latest-nx.js +2 -0
  16. package/dist/src/daemon/server/start.d.ts +1 -1
  17. package/dist/src/daemon/server/start.js +2 -0
  18. package/dist/src/native/nx.wasm32-wasi.debug.wasm +0 -0
  19. package/dist/src/native/nx.wasm32-wasi.wasm +0 -0
  20. package/dist/src/plugins/js/lock-file/npm-parser.js +37 -19
  21. package/dist/src/plugins/js/lock-file/pnpm-parser.js +51 -4
  22. package/dist/src/plugins/js/lock-file/project-graph-pruning.js +12 -4
  23. package/dist/src/plugins/js/utils/typescript.d.ts +7 -0
  24. package/dist/src/plugins/js/utils/typescript.js +39 -0
  25. package/dist/src/project-graph/plugins/isolation/plugin-worker.d.ts +1 -0
  26. package/dist/src/project-graph/plugins/isolation/plugin-worker.js +2 -0
  27. package/dist/src/project-graph/plugins/resolve-plugin.d.ts +7 -4
  28. package/dist/src/project-graph/plugins/resolve-plugin.js +152 -33
  29. package/dist/src/project-graph/plugins/utils.js +13 -7
  30. package/dist/src/tasks-runner/life-cycles/task-history-life-cycle-old.js +13 -2
  31. package/dist/src/tasks-runner/life-cycles/task-history-life-cycle.js +16 -5
  32. package/dist/src/tasks-runner/life-cycles/tui-summary-life-cycle.js +11 -2
  33. package/dist/src/tasks-runner/run-command.js +8 -1
  34. package/dist/src/tasks-runner/task-orchestrator.js +20 -4
  35. package/dist/src/tasks-runner/tasks-schedule.js +3 -3
  36. package/dist/src/utils/ab-testing.js +12 -0
  37. package/dist/src/utils/compile-cache.d.ts +24 -0
  38. package/dist/src/utils/compile-cache.js +49 -0
  39. package/dist/src/utils/enable-compile-cache.d.ts +1 -0
  40. package/dist/src/utils/enable-compile-cache.js +7 -0
  41. package/dist/src/utils/has-nx-js-plugin.d.ts +9 -0
  42. package/dist/src/utils/has-nx-js-plugin.js +24 -0
  43. package/dist/src/utils/logger.d.ts +12 -1
  44. package/dist/src/utils/logger.js +57 -36
  45. package/dist/src/utils/nx-key.d.ts +0 -1
  46. package/dist/src/utils/nx-key.js +20 -23
  47. package/dist/src/utils/output.d.ts +3 -2
  48. package/dist/src/utils/output.js +29 -28
  49. package/dist/src/utils/package-json.js +2 -13
  50. package/dist/src/utils/perf-logging.js +3 -1
  51. package/package.json +22 -15
@@ -1,47 +1,68 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.logger = exports.NX_ERROR = exports.NX_PREFIX = void 0;
4
+ exports.createLogger = createLogger;
4
5
  exports.stripIndent = stripIndent;
5
6
  const tslib_1 = require("tslib");
6
7
  const pc = tslib_1.__importStar(require("picocolors"));
8
+ const is_on_daemon_1 = require("../daemon/is-on-daemon");
9
+ const logger_1 = require("../daemon/logger");
7
10
  exports.NX_PREFIX = pc.inverse(pc.bold(pc.cyan(' NX ')));
8
11
  exports.NX_ERROR = pc.inverse(pc.bold(pc.red(' ERROR ')));
9
- exports.logger = {
10
- warn: (s) => console.warn(pc.bold(pc.yellow(s))),
11
- error: (s) => {
12
- if (typeof s === 'string' && s.startsWith('NX ')) {
13
- console.error(`\n${exports.NX_ERROR} ${pc.bold(pc.red(s.slice(3)))}\n`);
14
- }
15
- else if (s instanceof Error && s.stack) {
16
- console.error(pc.bold(pc.red(s.stack)));
17
- }
18
- else {
19
- console.error(pc.bold(pc.red(s)));
20
- }
21
- },
22
- info: (s) => {
23
- if (typeof s === 'string' && s.startsWith('NX ')) {
24
- console.info(`\n${exports.NX_PREFIX} ${pc.bold(s.slice(3))}\n`);
25
- }
26
- else {
27
- console.info(s);
28
- }
29
- },
30
- log: (...s) => {
31
- console.log(...s);
32
- },
33
- debug: (...s) => {
34
- console.debug(...s);
35
- },
36
- fatal: (...s) => {
37
- console.error(...s);
38
- },
39
- verbose: (...s) => {
40
- if (process.env.NX_VERBOSE_LOGGING === 'true') {
41
- console.log(...s);
42
- }
43
- },
44
- };
12
+ function createLogger(driver) {
13
+ return {
14
+ warn: (...v) => driver.warn(...v.map((s) => pc.bold(pc.yellow(s)))),
15
+ error: (s) => {
16
+ if (typeof s === 'string' && s.startsWith('NX ')) {
17
+ driver.error(`\n${exports.NX_ERROR} ${pc.bold(pc.red(s.slice(3)))}\n`);
18
+ }
19
+ else if (s instanceof Error && s.stack) {
20
+ driver.error(pc.bold(pc.red(s.stack)));
21
+ }
22
+ else {
23
+ driver.error(pc.bold(pc.red(s)));
24
+ }
25
+ },
26
+ info: (s) => {
27
+ if (typeof s === 'string' && s.startsWith('NX ')) {
28
+ driver.info(`\n${exports.NX_PREFIX} ${pc.bold(s.slice(3))}\n`);
29
+ }
30
+ else {
31
+ driver.info(s);
32
+ }
33
+ },
34
+ log: (...s) => {
35
+ driver.log(...s);
36
+ },
37
+ debug: (...s) => {
38
+ driver.debug(...s);
39
+ },
40
+ fatal: (...s) => {
41
+ driver.error(...s);
42
+ },
43
+ verbose: (...s) => {
44
+ if (process.env.NX_VERBOSE_LOGGING === 'true') {
45
+ // verbose logs go to stderr to prevent things like `nx show projects | grep`
46
+ // breaking when you enable verbose logging. The only potential breakage from
47
+ // this would be if a tool counts any output on stderr as being an issue, but
48
+ // there are likely other places that would trigger those same issues.
49
+ driver.warn(...s);
50
+ }
51
+ },
52
+ };
53
+ }
54
+ exports.logger = createLogger((0, is_on_daemon_1.isOnDaemon)()
55
+ ? (() => {
56
+ const log = logger_1.serverLogger.log.bind(logger_1.serverLogger);
57
+ return {
58
+ warn: log,
59
+ error: log,
60
+ debug: log,
61
+ info: log,
62
+ log: log,
63
+ };
64
+ })()
65
+ : console);
45
66
  function stripIndent(str) {
46
67
  const match = str.match(/^[ \t]*(?=\S)/gm);
47
68
  if (!match) {
@@ -1,6 +1,5 @@
1
1
  import type { NxKey } from '@nx/key';
2
2
  export declare function createNxKeyLicenseeInformation(nxKey: NxKey): string;
3
- export declare function printNxKey(): Promise<void>;
4
3
  export declare function getNxKeyInformation(): Promise<NxKey | null>;
5
4
  export declare class NxKeyNotInstalledError extends Error {
6
5
  constructor(e: Error);
@@ -2,12 +2,10 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.NxKeyNotInstalledError = void 0;
4
4
  exports.createNxKeyLicenseeInformation = createNxKeyLicenseeInformation;
5
- exports.printNxKey = printNxKey;
6
5
  exports.getNxKeyInformation = getNxKeyInformation;
7
- const logger_1 = require("./logger");
6
+ const installation_directory_1 = require("./installation-directory");
8
7
  const package_manager_1 = require("./package-manager");
9
8
  const workspace_root_1 = require("./workspace-root");
10
- const handle_import_1 = require("./handle-import");
11
9
  function createNxKeyLicenseeInformation(nxKey) {
12
10
  if ('isPowerpack' in nxKey && nxKey.isPowerpack) {
13
11
  return `Licensed to ${nxKey.organizationName} for ${nxKey.seatCount} user${nxKey.seatCount > 1 ? 's' : ''} in ${nxKey.workspaceCount === 9999
@@ -18,32 +16,31 @@ function createNxKeyLicenseeInformation(nxKey) {
18
16
  return `Licensed to ${nxKey.organizationName}.`;
19
17
  }
20
18
  }
21
- async function printNxKey() {
19
+ // `await handleImport` walks node_modules and pays ~25ms per miss; `resolve`
20
+ // is just the filesystem lookup and is microseconds when the package is absent.
21
+ // Only treat MODULE_NOT_FOUND as "not installed" so unrelated errors (permission,
22
+ // corrupt package.json, etc.) still surface instead of being silently hidden.
23
+ function packageInstalled(name) {
22
24
  try {
23
- const key = await getNxKeyInformation();
24
- if (key) {
25
- logger_1.logger.log(createNxKeyLicenseeInformation(key));
26
- }
25
+ require.resolve(name, { paths: (0, installation_directory_1.getNxRequirePaths)() });
26
+ return true;
27
+ }
28
+ catch (e) {
29
+ if (e?.code === 'MODULE_NOT_FOUND')
30
+ return false;
31
+ throw e;
27
32
  }
28
- catch { }
29
33
  }
30
34
  async function getNxKeyInformation() {
31
- try {
32
- const { getPowerpackLicenseInformation, getPowerpackLicenseInformationAsync, } = (await (0, handle_import_1.handleImport)('@nx/powerpack-license'));
33
- return (getPowerpackLicenseInformationAsync ?? getPowerpackLicenseInformation)(workspace_root_1.workspaceRoot);
35
+ if (packageInstalled('@nx/key')) {
36
+ const { getNxKeyInformationAsync } = await import('@nx/key');
37
+ return getNxKeyInformationAsync(workspace_root_1.workspaceRoot);
34
38
  }
35
- catch (e) {
36
- try {
37
- const { getNxKeyInformationAsync } = (await (0, handle_import_1.handleImport)('@nx/key'));
38
- return getNxKeyInformationAsync(workspace_root_1.workspaceRoot);
39
- }
40
- catch (e) {
41
- if ('code' in e && e.code === 'MODULE_NOT_FOUND') {
42
- throw new NxKeyNotInstalledError(e);
43
- }
44
- throw e;
45
- }
39
+ if (packageInstalled('@nx/powerpack-license')) {
40
+ const { getPowerpackLicenseInformation, getPowerpackLicenseInformationAsync, } = await import('@nx/powerpack-license');
41
+ return (getPowerpackLicenseInformationAsync ?? getPowerpackLicenseInformation)(workspace_root_1.workspaceRoot);
46
42
  }
43
+ throw new NxKeyNotInstalledError(new Error('MODULE_NOT_FOUND'));
47
44
  }
48
45
  class NxKeyNotInstalledError extends Error {
49
46
  constructor(e) {
@@ -1,3 +1,4 @@
1
+ import { WriteStream } from 'tty';
1
2
  import type { TaskStatus } from '../tasks-runner/tasks-runner';
2
3
  export interface CLIErrorMessageConfig {
3
4
  title: string;
@@ -47,12 +48,12 @@ declare class CLIOutput {
47
48
  bold: import("picocolors/types").Formatter;
48
49
  underline: import("picocolors/types").Formatter;
49
50
  dim: import("picocolors/types").Formatter;
50
- private writeToStdOut;
51
+ private writeToStream;
51
52
  overwriteLine(lineText?: string): void;
52
53
  private writeOutputTitle;
53
54
  private writeOptionalOutputBody;
54
55
  applyNxPrefix(color: string, text: string): string;
55
- addNewline(): void;
56
+ addNewline(stream?: WriteStream): void;
56
57
  addVerticalSeparator(color?: string): void;
57
58
  addVerticalSeparatorWithoutNewLines(color?: string): void;
58
59
  getVerticalSeparatorLines(color?: string): string[];
@@ -3,8 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.output = void 0;
4
4
  exports.orange = orange;
5
5
  const tslib_1 = require("tslib");
6
- const pc = tslib_1.__importStar(require("picocolors"));
7
6
  const os_1 = require("os");
7
+ const pc = tslib_1.__importStar(require("picocolors"));
8
8
  const readline = tslib_1.__importStar(require("readline"));
9
9
  const GH_GROUP_PREFIX = '::group::';
10
10
  const GH_GROUP_SUFFIX = '::endgroup::';
@@ -62,8 +62,8 @@ class CLIOutput {
62
62
  }
63
63
  return divider;
64
64
  }
65
- writeToStdOut(str) {
66
- process.stdout.write(str);
65
+ writeToStream(str, stream = process.stdout) {
66
+ stream.write(str);
67
67
  }
68
68
  overwriteLine(lineText = '') {
69
69
  // Ensure we always start writing from column 0.
@@ -78,23 +78,23 @@ class CLIOutput {
78
78
  process.stdout.write('\n');
79
79
  readline.cursorTo(process.stdout, 0);
80
80
  }
81
- writeOutputTitle({ color, title, }) {
82
- this.writeToStdOut(`${this.applyNxPrefix(color, title)}${os_1.EOL}`);
81
+ writeOutputTitle({ color, title, }, stream = process.stdout) {
82
+ this.writeToStream(`${this.applyNxPrefix(color, title)}${os_1.EOL}`, stream);
83
83
  }
84
- writeOptionalOutputBody(bodyLines) {
84
+ writeOptionalOutputBody(bodyLines, stream = process.stdout) {
85
85
  if (!bodyLines) {
86
86
  return;
87
87
  }
88
- this.addNewline();
89
- bodyLines.forEach((bodyLine) => this.writeToStdOut(`${bodyLine}${os_1.EOL}`));
88
+ this.addNewline(stream);
89
+ bodyLines.forEach((bodyLine) => this.writeToStream(`${bodyLine}${os_1.EOL}`, stream));
90
90
  }
91
91
  applyNxPrefix(color = 'cyan', text) {
92
92
  const colorFn = pcColors[color] || ((t) => t);
93
93
  const nxPrefix = pc.inverse(pc.bold(colorFn(` ${this.cliName} `)));
94
94
  return `${nxPrefix} ${text}`;
95
95
  }
96
- addNewline() {
97
- this.writeToStdOut(os_1.EOL);
96
+ addNewline(stream = process.stdout) {
97
+ this.writeToStream(os_1.EOL, stream);
98
98
  }
99
99
  addVerticalSeparator(color = 'gray') {
100
100
  this.addNewline();
@@ -102,7 +102,7 @@ class CLIOutput {
102
102
  this.addNewline();
103
103
  }
104
104
  addVerticalSeparatorWithoutNewLines(color = 'gray') {
105
- this.writeToStdOut(`${this.getVerticalSeparator(color)}${os_1.EOL}`);
105
+ this.writeToStream(`${this.getVerticalSeparator(color)}${os_1.EOL}`);
106
106
  }
107
107
  getVerticalSeparatorLines(color = 'gray') {
108
108
  return ['', this.getVerticalSeparator(color), ''];
@@ -112,36 +112,37 @@ class CLIOutput {
112
112
  return pc.dim(colorFn(this.VERTICAL_SEPARATOR));
113
113
  }
114
114
  error({ title, slug, bodyLines }) {
115
- this.addNewline();
115
+ const stream = process.stderr;
116
+ this.addNewline(stream);
116
117
  this.writeOutputTitle({
117
118
  color: 'red',
118
119
  title: pc.red(title),
119
- });
120
- this.writeOptionalOutputBody(bodyLines);
120
+ }, stream);
121
+ this.writeOptionalOutputBody(bodyLines, stream);
121
122
  /**
122
123
  * Optional slug to be used in an Nx error message redirect URL
123
124
  */
124
125
  if (slug && typeof slug === 'string') {
125
- this.addNewline();
126
- this.writeToStdOut(`${pc.gray(' Learn more about this error: ')}https://errors.nx.dev/${slug}${os_1.EOL}`);
126
+ this.addNewline(stream);
127
+ this.writeToStream(`${pc.gray(' Learn more about this error: ')}https://errors.nx.dev/${slug}${os_1.EOL}`, stream);
127
128
  }
128
- this.addNewline();
129
+ this.addNewline(stream);
129
130
  }
130
131
  warn({ title, slug, bodyLines }) {
131
- this.addNewline();
132
+ this.addNewline(process.stderr);
132
133
  this.writeOutputTitle({
133
134
  color: 'yellow',
134
135
  title: pc.yellow(title),
135
- });
136
- this.writeOptionalOutputBody(bodyLines);
136
+ }, process.stderr);
137
+ this.writeOptionalOutputBody(bodyLines, process.stderr);
137
138
  /**
138
139
  * Optional slug to be used in an Nx warning message redirect URL
139
140
  */
140
141
  if (slug && typeof slug === 'string') {
141
- this.addNewline();
142
- this.writeToStdOut(`${pc.gray(' Learn more about this warning: ')}https://errors.nx.dev/${slug}${os_1.EOL}`);
142
+ this.addNewline(process.stderr);
143
+ this.writeToStream(`${pc.gray(' Learn more about this warning: ')}https://errors.nx.dev/${slug}${os_1.EOL}`, process.stderr);
143
144
  }
144
- this.addNewline();
145
+ this.addNewline(process.stderr);
145
146
  }
146
147
  note({ title, bodyLines }) {
147
148
  this.addNewline();
@@ -170,12 +171,12 @@ class CLIOutput {
170
171
  this.addNewline();
171
172
  }
172
173
  logRawLine(message) {
173
- this.writeToStdOut(`${message}${os_1.EOL}`);
174
+ this.writeToStream(`${message}${os_1.EOL}`);
174
175
  this.addNewline();
175
176
  }
176
177
  logCommand(message, taskStatus) {
177
178
  this.addNewline();
178
- this.writeToStdOut(this.getCommandWithStatus(message, taskStatus));
179
+ this.writeToStream(this.getCommandWithStatus(message, taskStatus));
179
180
  this.addNewline();
180
181
  this.addNewline();
181
182
  }
@@ -187,13 +188,13 @@ class CLIOutput {
187
188
  commandOutputWithStatus = `${GH_GROUP_PREFIX}${icon} ${commandOutputWithStatus}`;
188
189
  }
189
190
  this.addNewline();
190
- this.writeToStdOut(commandOutputWithStatus);
191
+ this.writeToStream(commandOutputWithStatus);
191
192
  this.addNewline();
192
193
  this.addNewline();
193
- this.writeToStdOut(output);
194
+ this.writeToStream(output);
194
195
  if (process.env.NX_SKIP_LOG_GROUPING !== 'true' &&
195
196
  process.env.GITHUB_ACTIONS) {
196
- this.writeToStdOut(GH_GROUP_SUFFIX);
197
+ this.writeToStream(GH_GROUP_SUFFIX);
197
198
  }
198
199
  }
199
200
  getCommandWithStatus(message, taskStatus) {
@@ -21,6 +21,7 @@ const json_1 = require("../generators/utils/json");
21
21
  const target_merging_1 = require("../project-graph/utils/project-configuration/target-merging");
22
22
  const catalog_1 = require("./catalog");
23
23
  const fileutils_1 = require("./fileutils");
24
+ const has_nx_js_plugin_1 = require("./has-nx-js-plugin");
24
25
  const installation_directory_1 = require("./installation-directory");
25
26
  const package_manager_1 = require("./package-manager");
26
27
  const workspace_root_1 = require("./workspace-root");
@@ -124,7 +125,7 @@ function readTargetsFromPackageJson(packageJson, nxJson, projectRoot, workspaceR
124
125
  */
125
126
  if (!isPrivate &&
126
127
  !res['nx-release-publish'] &&
127
- hasNxJsPlugin(projectRoot, workspaceRoot)) {
128
+ (0, has_nx_js_plugin_1.hasNxJsPlugin)(projectRoot, workspaceRoot)) {
128
129
  const nxReleasePublishTargetDefaults = nxJson?.targetDefaults?.['nx-release-publish'] ?? {};
129
130
  res['nx-release-publish'] = {
130
131
  executor: '@nx/js:release-publish',
@@ -141,18 +142,6 @@ function readTargetsFromPackageJson(packageJson, nxJson, projectRoot, workspaceR
141
142
  }
142
143
  return res;
143
144
  }
144
- function hasNxJsPlugin(projectRoot, workspaceRoot) {
145
- try {
146
- // nx-ignore-next-line
147
- require.resolve('@nx/js/package.json', {
148
- paths: [projectRoot, ...(0, installation_directory_1.getNxRequirePaths)(workspaceRoot), __dirname],
149
- });
150
- return true;
151
- }
152
- catch {
153
- return false;
154
- }
155
- }
156
145
  /**
157
146
  * Uses `require.resolve` to read the package.json for a module.
158
147
  *
@@ -7,6 +7,7 @@ function isTrackedDetail(detail) {
7
7
  detail.track === true);
8
8
  }
9
9
  new perf_hooks_1.PerformanceObserver((list) => {
10
+ // observer is configured for 'measure' entries only (see .observe call below)
10
11
  const entries = list.getEntries();
11
12
  const logEnabled = process.env.NX_PERF_LOGGING === 'true';
12
13
  const tracked = entries.filter((e) => isTrackedDetail(e.detail));
@@ -17,9 +18,10 @@ new perf_hooks_1.PerformanceObserver((list) => {
17
18
  if (logEnabled) {
18
19
  const { isOnDaemon } = require('../daemon/is-on-daemon');
19
20
  const { serverLogger } = require('../daemon/logger');
21
+ const { logger } = require('./logger');
20
22
  const log = isOnDaemon()
21
23
  ? (msg) => serverLogger.log(msg)
22
- : console.log;
24
+ : (msg) => logger.warn(msg);
23
25
  for (const entry of entries) {
24
26
  log(`Time taken for '${entry.name}' ${entry.duration}ms`);
25
27
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nx",
3
- "version": "22.7.1",
3
+ "version": "22.7.3",
4
4
  "private": false,
5
5
  "type": "commonjs",
6
6
  "description": "The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.",
@@ -60,11 +60,11 @@
60
60
  "ansi-styles": "4.3.0",
61
61
  "argparse": "2.0.1",
62
62
  "asynckit": "0.4.0",
63
- "axios": "1.15.0",
63
+ "axios": "1.16.0",
64
64
  "balanced-match": "4.0.3",
65
65
  "base64-js": "1.5.1",
66
66
  "bl": "4.1.0",
67
- "brace-expansion": "5.0.2",
67
+ "brace-expansion": "5.0.5",
68
68
  "buffer": "5.7.1",
69
69
  "call-bind-apply-helpers": "1.0.2",
70
70
  "chalk": "4.1.2",
@@ -93,7 +93,7 @@
93
93
  "escape-string-regexp": "1.0.5",
94
94
  "figures": "3.2.0",
95
95
  "flat": "5.0.2",
96
- "follow-redirects": "1.15.11",
96
+ "follow-redirects": "1.16.0",
97
97
  "form-data": "4.0.5",
98
98
  "fs-constants": "1.0.0",
99
99
  "function-bind": "1.1.2",
@@ -121,7 +121,7 @@
121
121
  "mime-db": "1.52.0",
122
122
  "mime-types": "2.1.35",
123
123
  "mimic-fn": "2.1.0",
124
- "minimatch": "10.2.4",
124
+ "minimatch": "10.2.5",
125
125
  "minimist": "1.2.8",
126
126
  "npm-run-path": "4.0.1",
127
127
  "once": "1.4.0",
@@ -171,16 +171,16 @@
171
171
  }
172
172
  },
173
173
  "optionalDependencies": {
174
- "@nx/nx-darwin-arm64": "22.7.1",
175
- "@nx/nx-darwin-x64": "22.7.1",
176
- "@nx/nx-freebsd-x64": "22.7.1",
177
- "@nx/nx-linux-arm-gnueabihf": "22.7.1",
178
- "@nx/nx-linux-arm64-gnu": "22.7.1",
179
- "@nx/nx-linux-arm64-musl": "22.7.1",
180
- "@nx/nx-linux-x64-gnu": "22.7.1",
181
- "@nx/nx-linux-x64-musl": "22.7.1",
182
- "@nx/nx-win32-arm64-msvc": "22.7.1",
183
- "@nx/nx-win32-x64-msvc": "22.7.1"
174
+ "@nx/nx-darwin-arm64": "22.7.3",
175
+ "@nx/nx-darwin-x64": "22.7.3",
176
+ "@nx/nx-freebsd-x64": "22.7.3",
177
+ "@nx/nx-linux-arm-gnueabihf": "22.7.3",
178
+ "@nx/nx-linux-arm64-gnu": "22.7.3",
179
+ "@nx/nx-linux-arm64-musl": "22.7.3",
180
+ "@nx/nx-linux-x64-gnu": "22.7.3",
181
+ "@nx/nx-linux-x64-musl": "22.7.3",
182
+ "@nx/nx-win32-arm64-msvc": "22.7.3",
183
+ "@nx/nx-win32-x64-msvc": "22.7.3"
184
184
  },
185
185
  "nx-migrations": {
186
186
  "migrations": "./migrations.json",
@@ -317,6 +317,9 @@
317
317
  "src/utils/catalog": [
318
318
  "dist/src/utils/catalog/index.d.ts"
319
319
  ],
320
+ "src/internal-testing-utils/*": [
321
+ "src/internal-testing-utils/*.ts"
322
+ ],
320
323
  "src/*.js": [
321
324
  "dist/src/*.d.ts"
322
325
  ],
@@ -485,6 +488,10 @@
485
488
  "@nx/nx-source": "./src/native/*.mjs",
486
489
  "default": "./dist/src/native/*.mjs"
487
490
  },
491
+ "./src/internal-testing-utils/*": {
492
+ "types": "./src/internal-testing-utils/*.ts",
493
+ "default": "./src/internal-testing-utils/*.ts"
494
+ },
488
495
  "./src/*.js": {
489
496
  "@nx/nx-source": "./src/*.ts",
490
497
  "types": "./dist/src/*.d.ts",