nx 19.6.0-canary.20240813-c72ba9b → 19.6.0-rc.0
Sign up to get free protection for your applications and to get access to all the features.
- package/bin/post-install.js +1 -0
- package/package.json +14 -13
- package/src/command-line/release/command-object.d.ts +1 -0
- package/src/command-line/release/release.js +10 -1
- package/src/command-line/release/version.js +9 -2
- package/src/command-line/sync/sync.js +18 -0
- package/src/core/graph/main.js +1 -1
- package/src/daemon/server/project-graph-incremental-recomputation.js +1 -1
- package/src/native/nx.wasm32-wasi.wasm +0 -0
- package/src/project-graph/project-graph.js +1 -1
- package/src/tasks-runner/run-command.js +23 -21
- package/src/utils/sync-generators.js +1 -2
- package/src/utils/workspace-context.d.ts +2 -2
- package/src/utils/workspace-context.js +4 -3
package/bin/post-install.js
CHANGED
@@ -28,6 +28,7 @@ const logger_1 = require("../src/utils/logger");
|
|
28
28
|
if ((0, nx_cloud_utils_1.isNxCloudUsed)((0, nx_json_1.readNxJson)())) {
|
29
29
|
tasks.push((0, update_manager_1.verifyOrUpdateNxCloudClient)((0, get_cloud_options_1.getCloudOptions)()));
|
30
30
|
}
|
31
|
+
process.env.NX_DAEMON = 'false';
|
31
32
|
await Promise.all(tasks.map((promise) => {
|
32
33
|
return promise.catch((e) => {
|
33
34
|
if (process.env.NX_VERBOSE_LOGGING === 'true') {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "nx",
|
3
|
-
"version": "19.6.0-
|
3
|
+
"version": "19.6.0-rc.0",
|
4
4
|
"private": false,
|
5
5
|
"description": "The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.",
|
6
6
|
"repository": {
|
@@ -71,7 +71,7 @@
|
|
71
71
|
"yargs-parser": "21.1.1",
|
72
72
|
"node-machine-id": "1.1.12",
|
73
73
|
"ora": "5.3.0",
|
74
|
-
"@nrwl/tao": "19.6.0-
|
74
|
+
"@nrwl/tao": "19.6.0-rc.0"
|
75
75
|
},
|
76
76
|
"peerDependencies": {
|
77
77
|
"@swc-node/register": "^1.8.0",
|
@@ -86,16 +86,16 @@
|
|
86
86
|
}
|
87
87
|
},
|
88
88
|
"optionalDependencies": {
|
89
|
-
"@nx/nx-darwin-x64": "19.6.0-
|
90
|
-
"@nx/nx-darwin-arm64": "19.6.0-
|
91
|
-
"@nx/nx-linux-x64-gnu": "19.6.0-
|
92
|
-
"@nx/nx-linux-x64-musl": "19.6.0-
|
93
|
-
"@nx/nx-win32-x64-msvc": "19.6.0-
|
94
|
-
"@nx/nx-linux-arm64-gnu": "19.6.0-
|
95
|
-
"@nx/nx-linux-arm64-musl": "19.6.0-
|
96
|
-
"@nx/nx-linux-arm-gnueabihf": "19.6.0-
|
97
|
-
"@nx/nx-win32-arm64-msvc": "19.6.0-
|
98
|
-
"@nx/nx-freebsd-x64": "19.6.0-
|
89
|
+
"@nx/nx-darwin-x64": "19.6.0-rc.0",
|
90
|
+
"@nx/nx-darwin-arm64": "19.6.0-rc.0",
|
91
|
+
"@nx/nx-linux-x64-gnu": "19.6.0-rc.0",
|
92
|
+
"@nx/nx-linux-x64-musl": "19.6.0-rc.0",
|
93
|
+
"@nx/nx-win32-x64-msvc": "19.6.0-rc.0",
|
94
|
+
"@nx/nx-linux-arm64-gnu": "19.6.0-rc.0",
|
95
|
+
"@nx/nx-linux-arm64-musl": "19.6.0-rc.0",
|
96
|
+
"@nx/nx-linux-arm-gnueabihf": "19.6.0-rc.0",
|
97
|
+
"@nx/nx-win32-arm64-msvc": "19.6.0-rc.0",
|
98
|
+
"@nx/nx-freebsd-x64": "19.6.0-rc.0"
|
99
99
|
},
|
100
100
|
"nx-migrations": {
|
101
101
|
"migrations": "./migrations.json",
|
@@ -191,5 +191,6 @@
|
|
191
191
|
]
|
192
192
|
},
|
193
193
|
"main": "./bin/nx.js",
|
194
|
-
"type": "commonjs"
|
194
|
+
"type": "commonjs",
|
195
|
+
"types": "./bin/nx.d.ts"
|
195
196
|
}
|
@@ -60,6 +60,16 @@ function createAPI(overrideReleaseConfig) {
|
|
60
60
|
isDebug: args.printConfig === 'debug',
|
61
61
|
});
|
62
62
|
}
|
63
|
+
const rawVersionPlans = await (0, version_plans_1.readRawVersionPlans)();
|
64
|
+
if (args.specifier && rawVersionPlans.length > 0) {
|
65
|
+
output_1.output.error({
|
66
|
+
title: `A specifier option cannot be provided when using version plans.`,
|
67
|
+
bodyLines: [
|
68
|
+
`To override this behavior, use the Nx Release programmatic API directly (https://nx.dev/features/manage-releases#using-the-programmatic-api-for-nx-release).`,
|
69
|
+
],
|
70
|
+
});
|
71
|
+
process.exit(1);
|
72
|
+
}
|
63
73
|
// These properties must never be undefined as this command should
|
64
74
|
// always explicitly override the git operations of the subcommands.
|
65
75
|
const shouldCommit = userProvidedReleaseConfig.git?.commit ?? true;
|
@@ -87,7 +97,6 @@ function createAPI(overrideReleaseConfig) {
|
|
87
97
|
output_1.output.error(filterError);
|
88
98
|
process.exit(1);
|
89
99
|
}
|
90
|
-
const rawVersionPlans = await (0, version_plans_1.readRawVersionPlans)();
|
91
100
|
(0, version_plans_1.setResolvedVersionPlansOnGroups)(rawVersionPlans, releaseGroups, Object.keys(projectGraph.nodes));
|
92
101
|
const planFiles = new Set();
|
93
102
|
releaseGroups.forEach((group) => {
|
@@ -83,8 +83,15 @@ function createAPI(overrideReleaseConfig) {
|
|
83
83
|
output_1.output.error(filterError);
|
84
84
|
process.exit(1);
|
85
85
|
}
|
86
|
-
|
87
|
-
|
86
|
+
if (!args.specifier) {
|
87
|
+
const rawVersionPlans = await (0, version_plans_1.readRawVersionPlans)();
|
88
|
+
(0, version_plans_1.setResolvedVersionPlansOnGroups)(rawVersionPlans, releaseGroups, Object.keys(projectGraph.nodes));
|
89
|
+
}
|
90
|
+
else {
|
91
|
+
if (args.verbose && releaseGroups.some((g) => !!g.versionPlans)) {
|
92
|
+
console.log(`Skipping version plan discovery as a specifier was provided`);
|
93
|
+
}
|
94
|
+
}
|
88
95
|
if (args.deleteVersionPlans === undefined) {
|
89
96
|
// default to not delete version plans after versioning as they may be needed for changelog generation
|
90
97
|
args.deleteVersionPlans = false;
|
@@ -1,10 +1,12 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.syncHandler = syncHandler;
|
4
|
+
const ora = require("ora");
|
4
5
|
const project_graph_1 = require("../../project-graph/project-graph");
|
5
6
|
const output_1 = require("../../utils/output");
|
6
7
|
const params_1 = require("../../utils/params");
|
7
8
|
const sync_generators_1 = require("../../utils/sync-generators");
|
9
|
+
const chalk = require("chalk");
|
8
10
|
function syncHandler(options) {
|
9
11
|
if (options.verbose) {
|
10
12
|
process.env.NX_VERBOSE_LOGGING = 'true';
|
@@ -15,6 +17,12 @@ function syncHandler(options) {
|
|
15
17
|
const syncGenerators = await (0, sync_generators_1.collectAllRegisteredSyncGenerators)(projectGraph);
|
16
18
|
const results = await (0, sync_generators_1.getSyncGeneratorChanges)(syncGenerators);
|
17
19
|
if (!results.length) {
|
20
|
+
output_1.output.success({
|
21
|
+
title: options.check
|
22
|
+
? 'The workspace is up to date'
|
23
|
+
: 'The workspace is already up to date',
|
24
|
+
bodyLines: syncGenerators.map((generator) => `The ${chalk.bold(generator)} sync generator didn't identify any files in the workspace that are out of sync.`),
|
25
|
+
});
|
18
26
|
return 0;
|
19
27
|
}
|
20
28
|
if (options.check) {
|
@@ -24,7 +32,17 @@ function syncHandler(options) {
|
|
24
32
|
});
|
25
33
|
return 1;
|
26
34
|
}
|
35
|
+
output_1.output.warn({
|
36
|
+
title: `The workspace is out of sync`,
|
37
|
+
bodyLines: (0, sync_generators_1.syncGeneratorResultsToMessageLines)(results),
|
38
|
+
});
|
39
|
+
const spinner = ora('Syncing the workspace...');
|
40
|
+
spinner.start();
|
27
41
|
await (0, sync_generators_1.flushSyncGeneratorChanges)(results);
|
42
|
+
spinner.succeed(`The workspace was synced successfully!
|
43
|
+
|
44
|
+
Please make sure to commit the changes to your repository.
|
45
|
+
`);
|
28
46
|
return 0;
|
29
47
|
});
|
30
48
|
}
|