nx 22.7.0 → 22.7.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/dist/bin/nx.d.ts +1 -0
- package/dist/bin/nx.js +5 -2
- package/dist/src/ai/clone-ai-config-repo.js +20 -3
- package/dist/src/ai/set-up-ai-agents/set-up-ai-agents.js +15 -23
- package/dist/src/analytics/analytics.js +10 -1
- package/dist/src/command-line/graph/graph.js +0 -1
- package/dist/src/command-line/init/implementation/dot-nx/add-nx-scripts.js +13 -1
- package/dist/src/command-line/init/implementation/dot-nx/nxw.js +2 -1
- package/dist/src/command-line/migrate/command-object.js +5 -0
- package/dist/src/command-line/migrate/migrate.d.ts +10 -2
- package/dist/src/command-line/migrate/migrate.js +157 -30
- package/dist/src/command-line/release/config/use-legacy-versioning.d.ts +2 -0
- package/dist/src/command-line/release/config/use-legacy-versioning.js +8 -0
- package/dist/src/command-line/release/utils/shared.js +22 -12
- package/dist/src/config/misc-interfaces.d.ts +6 -0
- package/dist/src/core/graph/main.js +1 -1
- package/dist/src/core/graph/styles.css +1 -1
- package/dist/src/daemon/client/client.js +1 -1
- package/dist/src/daemon/client/daemon-environment.js +2 -0
- package/dist/src/daemon/is-nx-version-mismatch.d.ts +0 -1
- package/dist/src/daemon/is-nx-version-mismatch.js +2 -18
- package/dist/src/daemon/server/latest-nx.js +2 -0
- package/dist/src/daemon/server/server.js +2 -1
- package/dist/src/daemon/server/start.d.ts +1 -1
- package/dist/src/daemon/server/start.js +2 -0
- package/dist/src/native/nx.wasm32-wasi.debug.wasm +0 -0
- package/dist/src/native/nx.wasm32-wasi.wasm +0 -0
- package/dist/src/plugins/js/lock-file/npm-parser.js +37 -19
- package/dist/src/plugins/js/lock-file/pnpm-parser.js +51 -4
- package/dist/src/plugins/js/lock-file/project-graph-pruning.js +12 -4
- package/dist/src/project-graph/plugins/isolation/plugin-worker.d.ts +1 -0
- package/dist/src/project-graph/plugins/isolation/plugin-worker.js +2 -0
- package/dist/src/tasks-runner/life-cycles/task-history-life-cycle-old.js +13 -2
- package/dist/src/tasks-runner/life-cycles/task-history-life-cycle.js +16 -5
- package/dist/src/tasks-runner/life-cycles/tui-summary-life-cycle.js +11 -2
- package/dist/src/tasks-runner/run-command.js +10 -4
- package/dist/src/tasks-runner/task-orchestrator.js +26 -5
- package/dist/src/tasks-runner/utils.d.ts +11 -0
- package/dist/src/tasks-runner/utils.js +37 -0
- package/dist/src/utils/ab-testing.js +12 -0
- package/dist/src/utils/compile-cache.d.ts +24 -0
- package/dist/src/utils/compile-cache.js +49 -0
- package/dist/src/utils/enable-compile-cache.d.ts +1 -0
- package/dist/src/utils/enable-compile-cache.js +7 -0
- package/dist/src/utils/has-nx-js-plugin.d.ts +9 -0
- package/dist/src/utils/has-nx-js-plugin.js +24 -0
- package/dist/src/utils/installed-nx-version.d.ts +8 -0
- package/dist/src/utils/installed-nx-version.js +67 -0
- package/dist/src/utils/logger.d.ts +12 -1
- package/dist/src/utils/logger.js +57 -36
- package/dist/src/utils/nx-key.d.ts +0 -1
- package/dist/src/utils/nx-key.js +20 -23
- package/dist/src/utils/output.d.ts +3 -2
- package/dist/src/utils/output.js +29 -28
- package/dist/src/utils/package-json.js +2 -13
- package/dist/src/utils/perf-logging.js +3 -1
- package/dist/src/utils/workspace-context.js +1 -1
- package/package.json +22 -15
package/dist/src/utils/nx-key.js
CHANGED
|
@@ -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
|
|
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
|
-
|
|
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
|
-
|
|
24
|
-
|
|
25
|
-
|
|
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
|
-
|
|
32
|
-
const {
|
|
33
|
-
return (
|
|
35
|
+
if (packageInstalled('@nx/key')) {
|
|
36
|
+
const { getNxKeyInformationAsync } = await import('@nx/key');
|
|
37
|
+
return getNxKeyInformationAsync(workspace_root_1.workspaceRoot);
|
|
34
38
|
}
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
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
|
|
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[];
|
package/dist/src/utils/output.js
CHANGED
|
@@ -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
|
-
|
|
66
|
-
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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
|
-
|
|
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.
|
|
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.
|
|
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.
|
|
174
|
+
this.writeToStream(`${message}${os_1.EOL}`);
|
|
174
175
|
this.addNewline();
|
|
175
176
|
}
|
|
176
177
|
logCommand(message, taskStatus) {
|
|
177
178
|
this.addNewline();
|
|
178
|
-
this.
|
|
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.
|
|
191
|
+
this.writeToStream(commandOutputWithStatus);
|
|
191
192
|
this.addNewline();
|
|
192
193
|
this.addNewline();
|
|
193
|
-
this.
|
|
194
|
+
this.writeToStream(output);
|
|
194
195
|
if (process.env.NX_SKIP_LOG_GROUPING !== 'true' &&
|
|
195
196
|
process.env.GITHUB_ACTIONS) {
|
|
196
|
-
this.
|
|
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
|
-
:
|
|
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
|
}
|
|
@@ -54,7 +54,7 @@ async function globWithWorkspaceContext(workspaceRoot, globs, exclude) {
|
|
|
54
54
|
}
|
|
55
55
|
}
|
|
56
56
|
async function multiGlobWithWorkspaceContext(workspaceRoot, globs, exclude) {
|
|
57
|
-
if ((0, is_on_daemon_1.isOnDaemon)() || !client_1.daemonClient.enabled()) {
|
|
57
|
+
if (workspaceRoot === '/virtual' || (0, is_on_daemon_1.isOnDaemon)() || !client_1.daemonClient.enabled()) {
|
|
58
58
|
ensureContextAvailable(workspaceRoot);
|
|
59
59
|
return workspaceContext.multiGlob(globs, exclude);
|
|
60
60
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nx",
|
|
3
|
-
"version": "22.7.
|
|
3
|
+
"version": "22.7.2",
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
175
|
-
"@nx/nx-darwin-x64": "22.7.
|
|
176
|
-
"@nx/nx-freebsd-x64": "22.7.
|
|
177
|
-
"@nx/nx-linux-arm-gnueabihf": "22.7.
|
|
178
|
-
"@nx/nx-linux-arm64-gnu": "22.7.
|
|
179
|
-
"@nx/nx-linux-arm64-musl": "22.7.
|
|
180
|
-
"@nx/nx-linux-x64-gnu": "22.7.
|
|
181
|
-
"@nx/nx-linux-x64-musl": "22.7.
|
|
182
|
-
"@nx/nx-win32-arm64-msvc": "22.7.
|
|
183
|
-
"@nx/nx-win32-x64-msvc": "22.7.
|
|
174
|
+
"@nx/nx-darwin-arm64": "22.7.2",
|
|
175
|
+
"@nx/nx-darwin-x64": "22.7.2",
|
|
176
|
+
"@nx/nx-freebsd-x64": "22.7.2",
|
|
177
|
+
"@nx/nx-linux-arm-gnueabihf": "22.7.2",
|
|
178
|
+
"@nx/nx-linux-arm64-gnu": "22.7.2",
|
|
179
|
+
"@nx/nx-linux-arm64-musl": "22.7.2",
|
|
180
|
+
"@nx/nx-linux-x64-gnu": "22.7.2",
|
|
181
|
+
"@nx/nx-linux-x64-musl": "22.7.2",
|
|
182
|
+
"@nx/nx-win32-arm64-msvc": "22.7.2",
|
|
183
|
+
"@nx/nx-win32-x64-msvc": "22.7.2"
|
|
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",
|