nx 19.5.6 → 19.6.0-beta.0
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +12 -12
- package/release/index.d.ts +1 -1
- package/release/index.js +2 -1
- package/schemas/nx-schema.json +3 -0
- package/src/adapter/compat.d.ts +1 -1
- package/src/adapter/compat.js +2 -0
- package/src/command-line/affected/affected.js +1 -1
- package/src/command-line/connect/connect-to-nx-cloud.js +7 -3
- package/src/command-line/release/changelog.d.ts +2 -7
- package/src/command-line/release/changelog.js +361 -347
- package/src/command-line/release/command-object.d.ts +1 -0
- package/src/command-line/release/command-object.js +14 -0
- package/src/command-line/release/config/deep-merge-json.d.ts +1 -0
- package/src/command-line/release/config/deep-merge-json.js +28 -0
- package/src/command-line/release/index.d.ts +16 -4
- package/src/command-line/release/index.js +23 -9
- package/src/command-line/release/plan.d.ts +2 -1
- package/src/command-line/release/plan.js +90 -77
- package/src/command-line/release/publish.d.ts +2 -6
- package/src/command-line/release/publish.js +67 -52
- package/src/command-line/release/release.d.ts +2 -1
- package/src/command-line/release/release.js +181 -165
- package/src/command-line/release/utils/print-config.d.ts +7 -0
- package/src/command-line/release/utils/print-config.js +36 -0
- package/src/command-line/release/version.d.ts +2 -6
- package/src/command-line/release/version.js +179 -165
- package/src/command-line/run/run-one.js +1 -1
- package/src/command-line/run-many/run-many.js +1 -1
- package/src/command-line/yargs-utils/shared-options.d.ts +1 -0
- package/src/command-line/yargs-utils/shared-options.js +5 -0
- package/src/commands-runner/create-command-graph.js +4 -2
- package/src/config/nx-json.d.ts +10 -1
- package/src/devkit-internals.d.ts +1 -1
- package/src/devkit-internals.js +2 -1
- package/src/generators/utils/project-configuration.js +41 -11
- package/src/native/nx.wasm32-wasi.wasm +0 -0
- package/src/nx-cloud/generators/connect-to-nx-cloud/connect-to-nx-cloud.d.ts +4 -2
- package/src/nx-cloud/generators/connect-to-nx-cloud/connect-to-nx-cloud.js +61 -20
- package/src/nx-cloud/nx-cloud-tasks-runner-shell.d.ts +1 -0
- package/src/nx-cloud/utilities/axios.js +9 -2
- package/src/nx-cloud/utilities/get-cloud-options.d.ts +1 -1
- package/src/nx-cloud/utilities/get-cloud-options.js +3 -2
- package/src/plugins/package-json/create-nodes.js +9 -1
- package/src/project-graph/plugins/isolation/plugin-pool.js +32 -10
- package/src/project-graph/utils/project-configuration-utils.d.ts +1 -0
- package/src/project-graph/utils/project-configuration-utils.js +1 -0
- package/src/tasks-runner/cache.js +1 -1
- package/src/tasks-runner/run-command.js +6 -1
- package/src/tasks-runner/utils.js +14 -10
- package/src/utils/command-line-utils.d.ts +1 -0
- package/src/utils/nx-cloud-utils.js +3 -1
- package/src/utils/package-json.d.ts +2 -9
@@ -39,6 +39,20 @@ exports.yargsReleaseCommand = {
|
|
39
39
|
.option('verbose', {
|
40
40
|
type: 'boolean',
|
41
41
|
describe: 'Prints additional information about the commands (e.g., stack traces)',
|
42
|
+
})
|
43
|
+
// NOTE: The camel case format is required for the coerce() function to be called correctly. It still supports --print-config casing.
|
44
|
+
.option('printConfig', {
|
45
|
+
type: 'string',
|
46
|
+
describe: 'Print the resolved nx release configuration that would be used for the current command and then exit',
|
47
|
+
coerce: (val) => {
|
48
|
+
if (val === '') {
|
49
|
+
return true;
|
50
|
+
}
|
51
|
+
if (val === 'false') {
|
52
|
+
return false;
|
53
|
+
}
|
54
|
+
return val;
|
55
|
+
},
|
42
56
|
})
|
43
57
|
.check((argv) => {
|
44
58
|
if (argv.groups && argv.projects) {
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare function deepMergeJson<T extends Record<string, any>>(target: T, source: T): T;
|
@@ -0,0 +1,28 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.deepMergeJson = deepMergeJson;
|
4
|
+
function isObject(obj) {
|
5
|
+
return obj && typeof obj === 'object' && !Array.isArray(obj);
|
6
|
+
}
|
7
|
+
function deepMergeJson(target, source) {
|
8
|
+
try {
|
9
|
+
// Ensure both objects are valid JSON before attempting to merge values
|
10
|
+
JSON.parse(JSON.stringify(source));
|
11
|
+
JSON.parse(JSON.stringify(target));
|
12
|
+
for (const key in source) {
|
13
|
+
if (isObject(source[key])) {
|
14
|
+
if (!target[key]) {
|
15
|
+
Object.assign(target, { [key]: {} });
|
16
|
+
}
|
17
|
+
deepMergeJson(target[key], source[key]);
|
18
|
+
}
|
19
|
+
else {
|
20
|
+
Object.assign(target, { [key]: source[key] });
|
21
|
+
}
|
22
|
+
}
|
23
|
+
return target;
|
24
|
+
}
|
25
|
+
catch {
|
26
|
+
throw new Error('Invalid JSON was provided');
|
27
|
+
}
|
28
|
+
}
|
@@ -1,16 +1,28 @@
|
|
1
|
+
import type { NxReleaseConfiguration } from '../../config/nx-json';
|
1
2
|
/**
|
2
3
|
* @public
|
3
4
|
*/
|
4
|
-
export
|
5
|
+
export declare class ReleaseClient {
|
6
|
+
private overrideReleaseConfig;
|
7
|
+
releaseChangelog: (args: import("./command-object").ChangelogOptions) => Promise<import("./changelog").NxReleaseChangelogResult>;
|
8
|
+
releasePublish: (args: import("./command-object").PublishOptions, isCLI?: boolean) => Promise<number>;
|
9
|
+
releaseVersion: (args: import("./command-object").VersionOptions) => Promise<import("./version").NxReleaseVersionResult>;
|
10
|
+
release: (args: import("./command-object").ReleaseOptions) => Promise<import("./version").NxReleaseVersionResult | number>;
|
11
|
+
constructor(overrideReleaseConfig: NxReleaseConfiguration);
|
12
|
+
}
|
5
13
|
/**
|
6
14
|
* @public
|
7
15
|
*/
|
8
|
-
export
|
16
|
+
export declare const releaseChangelog: any;
|
9
17
|
/**
|
10
18
|
* @public
|
11
19
|
*/
|
12
|
-
export
|
20
|
+
export declare const releasePublish: any;
|
13
21
|
/**
|
14
22
|
* @public
|
15
23
|
*/
|
16
|
-
export
|
24
|
+
export declare const releaseVersion: any;
|
25
|
+
/**
|
26
|
+
* @public
|
27
|
+
*/
|
28
|
+
export declare const release: any;
|
@@ -1,23 +1,37 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.release = exports.releaseVersion = exports.releasePublish = exports.releaseChangelog = void 0;
|
3
|
+
exports.release = exports.releaseVersion = exports.releasePublish = exports.releaseChangelog = exports.ReleaseClient = void 0;
|
4
|
+
const changelog_1 = require("./changelog");
|
5
|
+
const publish_1 = require("./publish");
|
6
|
+
const release_1 = require("./release");
|
7
|
+
const version_1 = require("./version");
|
4
8
|
/**
|
5
9
|
* @public
|
6
10
|
*/
|
7
|
-
|
8
|
-
|
11
|
+
class ReleaseClient {
|
12
|
+
constructor(overrideReleaseConfig) {
|
13
|
+
this.overrideReleaseConfig = overrideReleaseConfig;
|
14
|
+
this.releaseChangelog = (0, changelog_1.createAPI)(this.overrideReleaseConfig);
|
15
|
+
this.releasePublish = (0, publish_1.createAPI)(this.overrideReleaseConfig);
|
16
|
+
this.releaseVersion = (0, version_1.createAPI)(this.overrideReleaseConfig);
|
17
|
+
this.release = (0, release_1.createAPI)(this.overrideReleaseConfig);
|
18
|
+
}
|
19
|
+
}
|
20
|
+
exports.ReleaseClient = ReleaseClient;
|
21
|
+
const defaultClient = new ReleaseClient({});
|
9
22
|
/**
|
10
23
|
* @public
|
11
24
|
*/
|
12
|
-
|
13
|
-
Object.defineProperty(exports, "releasePublish", { enumerable: true, get: function () { return publish_1.releasePublish; } });
|
25
|
+
exports.releaseChangelog = defaultClient.releaseChangelog.bind(defaultClient);
|
14
26
|
/**
|
15
27
|
* @public
|
16
28
|
*/
|
17
|
-
|
18
|
-
Object.defineProperty(exports, "releaseVersion", { enumerable: true, get: function () { return version_1.releaseVersion; } });
|
29
|
+
exports.releasePublish = defaultClient.releasePublish.bind(defaultClient);
|
19
30
|
/**
|
20
31
|
* @public
|
21
32
|
*/
|
22
|
-
|
23
|
-
|
33
|
+
exports.releaseVersion = defaultClient.releaseVersion.bind(defaultClient);
|
34
|
+
/**
|
35
|
+
* @public
|
36
|
+
*/
|
37
|
+
exports.release = defaultClient.release.bind(defaultClient);
|
@@ -1,3 +1,4 @@
|
|
1
|
+
import { NxReleaseConfiguration } from '../../config/nx-json';
|
1
2
|
import { PlanOptions } from './command-object';
|
2
3
|
export declare const releasePlanCLIHandler: (args: PlanOptions) => Promise<number>;
|
3
|
-
export declare function
|
4
|
+
export declare function createAPI(overrideReleaseConfig: NxReleaseConfiguration): (args: PlanOptions) => Promise<string | number>;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.releasePlanCLIHandler = void 0;
|
4
|
-
exports.
|
4
|
+
exports.createAPI = createAPI;
|
5
5
|
const enquirer_1 = require("enquirer");
|
6
6
|
const fs_extra_1 = require("fs-extra");
|
7
7
|
const path_1 = require("path");
|
@@ -17,98 +17,111 @@ const version_plans_1 = require("./config/version-plans");
|
|
17
17
|
const generate_version_plan_content_1 = require("./utils/generate-version-plan-content");
|
18
18
|
const git_1 = require("./utils/git");
|
19
19
|
const print_changes_1 = require("./utils/print-changes");
|
20
|
-
const
|
20
|
+
const print_config_1 = require("./utils/print-config");
|
21
|
+
const deep_merge_json_1 = require("./config/deep-merge-json");
|
22
|
+
const releasePlanCLIHandler = (args) => (0, params_1.handleErrors)(args.verbose, () => createAPI({})(args));
|
21
23
|
exports.releasePlanCLIHandler = releasePlanCLIHandler;
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
const { error: configError, nxReleaseConfig } = await (0, config_1.createNxReleaseConfig)(projectGraph, await (0, file_map_utils_1.createProjectFileMapUsingProjectGraph)(projectGraph), nxJson.release);
|
30
|
-
if (configError) {
|
31
|
-
return await (0, config_1.handleNxReleaseConfigError)(configError);
|
32
|
-
}
|
33
|
-
const { error: filterError, releaseGroups, releaseGroupToFilteredProjects, } = (0, filter_release_groups_1.filterReleaseGroups)(projectGraph, nxReleaseConfig, args.projects, args.groups);
|
34
|
-
if (filterError) {
|
35
|
-
output_1.output.error(filterError);
|
36
|
-
process.exit(1);
|
37
|
-
}
|
38
|
-
const versionPlanBumps = {};
|
39
|
-
const setBumpIfNotNone = (projectOrGroup, version) => {
|
40
|
-
if (version !== 'none') {
|
41
|
-
versionPlanBumps[projectOrGroup] = version;
|
24
|
+
function createAPI(overrideReleaseConfig) {
|
25
|
+
return async function releasePlan(args) {
|
26
|
+
const projectGraph = await (0, project_graph_1.createProjectGraphAsync)({ exitOnError: true });
|
27
|
+
const nxJson = (0, nx_json_1.readNxJson)();
|
28
|
+
const userProvidedReleaseConfig = (0, deep_merge_json_1.deepMergeJson)(nxJson.release ?? {}, overrideReleaseConfig ?? {});
|
29
|
+
if (args.verbose) {
|
30
|
+
process.env.NX_VERBOSE_LOGGING = 'true';
|
42
31
|
}
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
' feat(pkg-b): add new feature',
|
55
|
-
' fix(pkg-a): correct a bug',
|
56
|
-
' chore: update build process',
|
57
|
-
' fix(core)!: breaking change in core package',
|
58
|
-
],
|
32
|
+
// Apply default configuration to any optional user configuration
|
33
|
+
const { error: configError, nxReleaseConfig } = await (0, config_1.createNxReleaseConfig)(projectGraph, await (0, file_map_utils_1.createProjectFileMapUsingProjectGraph)(projectGraph), nxJson.release);
|
34
|
+
if (configError) {
|
35
|
+
return await (0, config_1.handleNxReleaseConfigError)(configError);
|
36
|
+
}
|
37
|
+
// --print-config exits directly as it is not designed to be combined with any other programmatic operations
|
38
|
+
if (args.printConfig) {
|
39
|
+
return (0, print_config_1.printConfigAndExit)({
|
40
|
+
userProvidedReleaseConfig,
|
41
|
+
nxReleaseConfig,
|
42
|
+
isDebug: args.printConfig === 'debug',
|
59
43
|
});
|
44
|
+
}
|
45
|
+
const { error: filterError, releaseGroups, releaseGroupToFilteredProjects, } = (0, filter_release_groups_1.filterReleaseGroups)(projectGraph, nxReleaseConfig, args.projects, args.groups);
|
46
|
+
if (filterError) {
|
47
|
+
output_1.output.error(filterError);
|
60
48
|
process.exit(1);
|
61
49
|
}
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
50
|
+
const versionPlanBumps = {};
|
51
|
+
const setBumpIfNotNone = (projectOrGroup, version) => {
|
52
|
+
if (version !== 'none') {
|
53
|
+
versionPlanBumps[projectOrGroup] = version;
|
54
|
+
}
|
55
|
+
};
|
56
|
+
if (args.message) {
|
57
|
+
const message = (0, git_1.parseConventionalCommitsMessage)(args.message);
|
58
|
+
if (!message) {
|
59
|
+
output_1.output.error({
|
60
|
+
title: 'Changelog message is not in conventional commits format.',
|
61
|
+
bodyLines: [
|
62
|
+
'Please ensure your message is in the form of:',
|
63
|
+
' type(optional scope): description',
|
64
|
+
'',
|
65
|
+
'For example:',
|
66
|
+
' feat(pkg-b): add new feature',
|
67
|
+
' fix(pkg-a): correct a bug',
|
68
|
+
' chore: update build process',
|
69
|
+
' fix(core)!: breaking change in core package',
|
70
|
+
],
|
71
|
+
});
|
72
|
+
process.exit(1);
|
69
73
|
}
|
70
74
|
}
|
71
|
-
|
72
|
-
|
73
|
-
setBumpIfNotNone(group.name, args.bump ||
|
74
|
-
(await promptForVersion(`How do you want to bump the versions of all projects?`)));
|
75
|
-
}
|
76
|
-
}
|
77
|
-
else {
|
78
|
-
for (const group of releaseGroups) {
|
75
|
+
if (releaseGroups[0].name === config_1.IMPLICIT_DEFAULT_RELEASE_GROUP) {
|
76
|
+
const group = releaseGroups[0];
|
79
77
|
if (group.projectsRelationship === 'independent') {
|
80
|
-
for (const project of
|
78
|
+
for (const project of group.projects) {
|
81
79
|
setBumpIfNotNone(project, args.bump ||
|
82
|
-
(await promptForVersion(`How do you want to bump the version of the project "${project}"
|
80
|
+
(await promptForVersion(`How do you want to bump the version of the project "${project}"?`)));
|
83
81
|
}
|
84
82
|
}
|
85
83
|
else {
|
84
|
+
// TODO: use project names instead of the implicit default release group name? (though this might be confusing, as users might think they can just delete one of the project bumps to change the behavior to independent versioning)
|
86
85
|
setBumpIfNotNone(group.name, args.bump ||
|
87
|
-
(await promptForVersion(`How do you want to bump the versions of
|
86
|
+
(await promptForVersion(`How do you want to bump the versions of all projects?`)));
|
88
87
|
}
|
89
88
|
}
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
89
|
+
else {
|
90
|
+
for (const group of releaseGroups) {
|
91
|
+
if (group.projectsRelationship === 'independent') {
|
92
|
+
for (const project of releaseGroupToFilteredProjects.get(group)) {
|
93
|
+
setBumpIfNotNone(project, args.bump ||
|
94
|
+
(await promptForVersion(`How do you want to bump the version of the project "${project}" within group "${group.name}"?`)));
|
95
|
+
}
|
96
|
+
}
|
97
|
+
else {
|
98
|
+
setBumpIfNotNone(group.name, args.bump ||
|
99
|
+
(await promptForVersion(`How do you want to bump the versions of the projects in the group "${group.name}"?`)));
|
100
|
+
}
|
101
|
+
}
|
102
|
+
}
|
103
|
+
if (!Object.keys(versionPlanBumps).length) {
|
104
|
+
output_1.output.warn({
|
105
|
+
title: 'No version bumps were selected so no version plan file was created.',
|
106
|
+
});
|
107
|
+
return 0;
|
108
|
+
}
|
109
|
+
const versionPlanMessage = args.message || (await promptForMessage());
|
110
|
+
const versionPlanFileContent = (0, generate_version_plan_content_1.generateVersionPlanContent)(versionPlanBumps, versionPlanMessage);
|
111
|
+
const versionPlanFileName = `version-plan-${new Date().getTime()}.md`;
|
112
|
+
if (args.dryRun) {
|
113
|
+
output_1.output.logSingleLine(`Would create version plan file "${versionPlanFileName}", but --dry-run was set.`);
|
114
|
+
(0, print_changes_1.printDiff)('', versionPlanFileContent, 1);
|
115
|
+
}
|
116
|
+
else {
|
117
|
+
output_1.output.logSingleLine(`Creating version plan file "${versionPlanFileName}"`);
|
118
|
+
(0, print_changes_1.printDiff)('', versionPlanFileContent, 1);
|
119
|
+
const versionPlansAbsolutePath = (0, version_plans_1.getVersionPlansAbsolutePath)();
|
120
|
+
await (0, fs_extra_1.ensureDir)(versionPlansAbsolutePath);
|
121
|
+
await (0, fs_extra_1.writeFile)((0, path_1.join)(versionPlansAbsolutePath, versionPlanFileName), versionPlanFileContent);
|
122
|
+
}
|
95
123
|
return 0;
|
96
|
-
}
|
97
|
-
const versionPlanMessage = args.message || (await promptForMessage());
|
98
|
-
const versionPlanFileContent = (0, generate_version_plan_content_1.generateVersionPlanContent)(versionPlanBumps, versionPlanMessage);
|
99
|
-
const versionPlanFileName = `version-plan-${new Date().getTime()}.md`;
|
100
|
-
if (args.dryRun) {
|
101
|
-
output_1.output.logSingleLine(`Would create version plan file "${versionPlanFileName}", but --dry-run was set.`);
|
102
|
-
(0, print_changes_1.printDiff)('', versionPlanFileContent, 1);
|
103
|
-
}
|
104
|
-
else {
|
105
|
-
output_1.output.logSingleLine(`Creating version plan file "${versionPlanFileName}"`);
|
106
|
-
(0, print_changes_1.printDiff)('', versionPlanFileContent, 1);
|
107
|
-
const versionPlansAbsolutePath = (0, version_plans_1.getVersionPlansAbsolutePath)();
|
108
|
-
await (0, fs_extra_1.ensureDir)(versionPlansAbsolutePath);
|
109
|
-
await (0, fs_extra_1.writeFile)((0, path_1.join)(versionPlansAbsolutePath, versionPlanFileName), versionPlanFileContent);
|
110
|
-
}
|
111
|
-
return 0;
|
124
|
+
};
|
112
125
|
}
|
113
126
|
async function promptForVersion(message) {
|
114
127
|
try {
|
@@ -1,8 +1,4 @@
|
|
1
|
+
import { NxReleaseConfiguration } from '../../config/nx-json';
|
1
2
|
import { PublishOptions } from './command-object';
|
2
3
|
export declare const releasePublishCLIHandler: (args: PublishOptions) => Promise<number>;
|
3
|
-
|
4
|
-
* NOTE: This function is also exported for programmatic usage and forms part of the public API
|
5
|
-
* of Nx. We intentionally do not wrap the implementation with handleErrors because users need
|
6
|
-
* to have control over their own error handling when using the API.
|
7
|
-
*/
|
8
|
-
export declare function releasePublish(args: PublishOptions, isCLI?: boolean): Promise<number>;
|
4
|
+
export declare function createAPI(overrideReleaseConfig: NxReleaseConfiguration): (args: PublishOptions, isCLI?: boolean) => Promise<number>;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.releasePublishCLIHandler = void 0;
|
4
|
-
exports.
|
4
|
+
exports.createAPI = createAPI;
|
5
5
|
const nx_json_1 = require("../../config/nx-json");
|
6
6
|
const file_map_utils_1 = require("../../project-graph/file-map-utils");
|
7
7
|
const project_graph_1 = require("../../project-graph/project-graph");
|
@@ -12,50 +12,78 @@ const params_1 = require("../../utils/params");
|
|
12
12
|
const project_graph_utils_1 = require("../../utils/project-graph-utils");
|
13
13
|
const graph_1 = require("../graph/graph");
|
14
14
|
const config_1 = require("./config/config");
|
15
|
+
const deep_merge_json_1 = require("./config/deep-merge-json");
|
15
16
|
const filter_release_groups_1 = require("./config/filter-release-groups");
|
16
|
-
const
|
17
|
+
const print_config_1 = require("./utils/print-config");
|
18
|
+
const releasePublishCLIHandler = (args) => (0, params_1.handleErrors)(args.verbose, () => createAPI({})(args, true));
|
17
19
|
exports.releasePublishCLIHandler = releasePublishCLIHandler;
|
18
|
-
|
19
|
-
* NOTE: This function is also exported for programmatic usage and forms part of the public API
|
20
|
-
* of Nx. We intentionally do not wrap the implementation with handleErrors because users need
|
21
|
-
* to have control over their own error handling when using the API.
|
22
|
-
*/
|
23
|
-
async function releasePublish(args, isCLI = false) {
|
20
|
+
function createAPI(overrideReleaseConfig) {
|
24
21
|
/**
|
25
|
-
*
|
26
|
-
*
|
27
|
-
*
|
28
|
-
* We intentionally do not include that in the function signature, however, so as not to cause
|
29
|
-
* confusing errors for programmatic consumers of this function.
|
22
|
+
* NOTE: This function is also exported for programmatic usage and forms part of the public API
|
23
|
+
* of Nx. We intentionally do not wrap the implementation with handleErrors because users need
|
24
|
+
* to have control over their own error handling when using the API.
|
30
25
|
*/
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
26
|
+
return async function releasePublish(args, isCLI = false) {
|
27
|
+
/**
|
28
|
+
* When used via the CLI, the args object will contain a __overrides_unparsed__ property that is
|
29
|
+
* important for invoking the relevant executor behind the scenes.
|
30
|
+
*
|
31
|
+
* We intentionally do not include that in the function signature, however, so as not to cause
|
32
|
+
* confusing errors for programmatic consumers of this function.
|
33
|
+
*/
|
34
|
+
const _args = args;
|
35
|
+
const projectGraph = await (0, project_graph_1.createProjectGraphAsync)({ exitOnError: true });
|
36
|
+
const nxJson = (0, nx_json_1.readNxJson)();
|
37
|
+
const userProvidedReleaseConfig = (0, deep_merge_json_1.deepMergeJson)(nxJson.release ?? {}, overrideReleaseConfig ?? {});
|
38
|
+
if (_args.verbose) {
|
39
|
+
process.env.NX_VERBOSE_LOGGING = 'true';
|
40
|
+
}
|
41
|
+
// Apply default configuration to any optional user configuration
|
42
|
+
const { error: configError, nxReleaseConfig } = await (0, config_1.createNxReleaseConfig)(projectGraph, await (0, file_map_utils_1.createProjectFileMapUsingProjectGraph)(projectGraph), userProvidedReleaseConfig);
|
43
|
+
if (configError) {
|
44
|
+
return await (0, config_1.handleNxReleaseConfigError)(configError);
|
45
|
+
}
|
46
|
+
// --print-config exits directly as it is not designed to be combined with any other programmatic operations
|
47
|
+
if (args.printConfig) {
|
48
|
+
return (0, print_config_1.printConfigAndExit)({
|
49
|
+
userProvidedReleaseConfig,
|
50
|
+
nxReleaseConfig,
|
51
|
+
isDebug: args.printConfig === 'debug',
|
52
|
+
});
|
53
|
+
}
|
54
|
+
const { error: filterError, releaseGroups, releaseGroupToFilteredProjects, } = (0, filter_release_groups_1.filterReleaseGroups)(projectGraph, nxReleaseConfig, _args.projects, _args.groups);
|
55
|
+
if (filterError) {
|
56
|
+
output_1.output.error(filterError);
|
57
|
+
process.exit(1);
|
58
|
+
}
|
59
|
+
/**
|
60
|
+
* If the user is filtering to a subset of projects or groups, we should not run the publish task
|
61
|
+
* for dependencies, because that could cause projects outset of the filtered set to be published.
|
62
|
+
*/
|
63
|
+
const shouldExcludeTaskDependencies = _args.projects?.length > 0 ||
|
64
|
+
_args.groups?.length > 0 ||
|
65
|
+
args.excludeTaskDependencies;
|
66
|
+
let overallExitStatus = 0;
|
67
|
+
if (args.projects?.length) {
|
68
|
+
/**
|
69
|
+
* Run publishing for all remaining release groups and filtered projects within them
|
70
|
+
*/
|
71
|
+
for (const releaseGroup of releaseGroups) {
|
72
|
+
const status = await runPublishOnProjects(_args, projectGraph, nxJson, Array.from(releaseGroupToFilteredProjects.get(releaseGroup)), isCLI, {
|
73
|
+
excludeTaskDependencies: shouldExcludeTaskDependencies,
|
74
|
+
loadDotEnvFiles: process.env.NX_LOAD_DOT_ENV_FILES !== 'false',
|
75
|
+
});
|
76
|
+
if (status !== 0) {
|
77
|
+
overallExitStatus = status || 1;
|
78
|
+
}
|
79
|
+
}
|
80
|
+
return overallExitStatus;
|
81
|
+
}
|
54
82
|
/**
|
55
|
-
* Run publishing for all remaining release groups
|
83
|
+
* Run publishing for all remaining release groups
|
56
84
|
*/
|
57
85
|
for (const releaseGroup of releaseGroups) {
|
58
|
-
const status = await runPublishOnProjects(_args, projectGraph, nxJson,
|
86
|
+
const status = await runPublishOnProjects(_args, projectGraph, nxJson, releaseGroup.projects, isCLI, {
|
59
87
|
excludeTaskDependencies: shouldExcludeTaskDependencies,
|
60
88
|
loadDotEnvFiles: process.env.NX_LOAD_DOT_ENV_FILES !== 'false',
|
61
89
|
});
|
@@ -64,20 +92,7 @@ async function releasePublish(args, isCLI = false) {
|
|
64
92
|
}
|
65
93
|
}
|
66
94
|
return overallExitStatus;
|
67
|
-
}
|
68
|
-
/**
|
69
|
-
* Run publishing for all remaining release groups
|
70
|
-
*/
|
71
|
-
for (const releaseGroup of releaseGroups) {
|
72
|
-
const status = await runPublishOnProjects(_args, projectGraph, nxJson, releaseGroup.projects, isCLI, {
|
73
|
-
excludeTaskDependencies: shouldExcludeTaskDependencies,
|
74
|
-
loadDotEnvFiles: process.env.NX_LOAD_DOT_ENV_FILES !== 'false',
|
75
|
-
});
|
76
|
-
if (status !== 0) {
|
77
|
-
overallExitStatus = status || 1;
|
78
|
-
}
|
79
|
-
}
|
80
|
-
return overallExitStatus;
|
95
|
+
};
|
81
96
|
}
|
82
97
|
async function runPublishOnProjects(args, projectGraph, nxJson, projectNames, isCLI, extraOptions) {
|
83
98
|
const projectsToRun = projectNames.map((projectName) => projectGraph.nodes[projectName]);
|
@@ -1,4 +1,5 @@
|
|
1
|
+
import { NxReleaseConfiguration } from '../../config/nx-json';
|
1
2
|
import { ReleaseOptions, VersionOptions } from './command-object';
|
2
3
|
import { NxReleaseVersionResult } from './version';
|
3
4
|
export declare const releaseCLIHandler: (args: VersionOptions) => Promise<number>;
|
4
|
-
export declare function
|
5
|
+
export declare function createAPI(overrideReleaseConfig: NxReleaseConfiguration): (args: ReleaseOptions) => Promise<NxReleaseVersionResult | number>;
|