@nx/js 20.7.2 → 20.8.0-beta.1
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/package.json +3 -3
- package/src/generators/library/library.js +4 -3
- package/src/generators/library/utils/add-release-config.d.ts +1 -1
- package/src/generators/library/utils/add-release-config.js +21 -7
- package/src/generators/release-version/release-version.d.ts +1 -1
- package/src/generators/release-version/release-version.js +12 -11
- package/src/generators/release-version/schema.d.ts +1 -1
- package/src/generators/release-version/schema.json +23 -4
- package/src/release/utils/update-lock-file.d.ts +10 -0
- package/src/{generators/release-version → release}/utils/update-lock-file.js +12 -9
- package/src/release/version-actions.d.ts +22 -0
- package/src/release/version-actions.js +189 -0
- package/src/utils/typescript/ts-solution-setup.js +1 -1
- package/src/generators/release-version/utils/update-lock-file.d.ts +0 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/js",
|
|
3
|
-
"version": "20.
|
|
3
|
+
"version": "20.8.0-beta.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The JS plugin for Nx contains executors and generators that provide the best experience for developing JavaScript and TypeScript projects. ",
|
|
6
6
|
"repository": {
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
"@babel/preset-env": "^7.23.2",
|
|
40
40
|
"@babel/preset-typescript": "^7.22.5",
|
|
41
41
|
"@babel/runtime": "^7.22.6",
|
|
42
|
-
"@nx/devkit": "20.
|
|
43
|
-
"@nx/workspace": "20.
|
|
42
|
+
"@nx/devkit": "20.8.0-beta.1",
|
|
43
|
+
"@nx/workspace": "20.8.0-beta.1",
|
|
44
44
|
"@zkochan/js-yaml": "0.0.7",
|
|
45
45
|
"babel-plugin-const-enum": "^1.0.1",
|
|
46
46
|
"babel-plugin-macros": "^3.1.0",
|
|
@@ -8,8 +8,10 @@ const project_name_and_root_utils_1 = require("@nx/devkit/src/generators/project
|
|
|
8
8
|
const prompt_1 = require("@nx/devkit/src/generators/prompt");
|
|
9
9
|
const target_defaults_utils_1 = require("@nx/devkit/src/generators/target-defaults-utils");
|
|
10
10
|
const log_show_project_command_1 = require("@nx/devkit/src/utils/log-show-project-command");
|
|
11
|
+
const use_legacy_versioning_1 = require("nx/src/command-line/release/config/use-legacy-versioning");
|
|
11
12
|
const path_1 = require("path");
|
|
12
13
|
const generator_prompts_1 = require("../../utils/generator-prompts");
|
|
14
|
+
const sort_fields_1 = require("../../utils/package-json/sort-fields");
|
|
13
15
|
const update_package_json_1 = require("../../utils/package-json/update-package-json");
|
|
14
16
|
const add_swc_config_1 = require("../../utils/swc/add-swc-config");
|
|
15
17
|
const add_swc_dependencies_1 = require("../../utils/swc/add-swc-dependencies");
|
|
@@ -21,7 +23,6 @@ const ts_config_1 = require("../../utils/typescript/ts-config");
|
|
|
21
23
|
const ts_solution_setup_1 = require("../../utils/typescript/ts-solution-setup");
|
|
22
24
|
const versions_1 = require("../../utils/versions");
|
|
23
25
|
const init_1 = require("../init/init");
|
|
24
|
-
const sort_fields_1 = require("../../utils/package-json/sort-fields");
|
|
25
26
|
const add_release_config_1 = require("./utils/add-release-config");
|
|
26
27
|
const defaultOutputDirectory = 'dist';
|
|
27
28
|
async function libraryGenerator(tree, schema) {
|
|
@@ -158,8 +159,8 @@ async function libraryGeneratorInternal(tree, schema) {
|
|
|
158
159
|
return (0, devkit_1.runTasksInSerial)(...tasks);
|
|
159
160
|
}
|
|
160
161
|
async function configureProject(tree, options) {
|
|
162
|
+
const nxJson = (0, devkit_1.readNxJson)(tree);
|
|
161
163
|
if (options.hasPlugin) {
|
|
162
|
-
const nxJson = (0, devkit_1.readNxJson)(tree);
|
|
163
164
|
(0, plugin_1.ensureProjectIsIncludedInPluginRegistrations)(nxJson, options.projectRoot, options.bundler === 'none' ? null : 'build');
|
|
164
165
|
(0, devkit_1.updateNxJson)(tree, nxJson);
|
|
165
166
|
}
|
|
@@ -217,7 +218,7 @@ async function configureProject(tree, options) {
|
|
|
217
218
|
await (0, add_release_config_1.addReleaseConfigForTsSolution)(tree, options.name, projectConfiguration);
|
|
218
219
|
}
|
|
219
220
|
else {
|
|
220
|
-
await (0, add_release_config_1.addReleaseConfigForNonTsSolution)(tree, options.name, projectConfiguration, defaultOutputDirectory);
|
|
221
|
+
await (0, add_release_config_1.addReleaseConfigForNonTsSolution)((0, use_legacy_versioning_1.shouldUseLegacyVersioning)(nxJson.release), tree, options.name, projectConfiguration, defaultOutputDirectory);
|
|
221
222
|
}
|
|
222
223
|
}
|
|
223
224
|
if (!options.useProjectJson) {
|
|
@@ -7,5 +7,5 @@ export declare function addReleaseConfigForTsSolution(tree: Tree, projectName: s
|
|
|
7
7
|
* Add release configuration for non-ts solution projects
|
|
8
8
|
* Add release option in project.json and add packageRoot to nx-release-publish target
|
|
9
9
|
*/
|
|
10
|
-
export declare function addReleaseConfigForNonTsSolution(tree: Tree, projectName: string, projectConfiguration: ProjectConfiguration, defaultOutputDirectory?: string): Promise<ProjectConfiguration>;
|
|
10
|
+
export declare function addReleaseConfigForNonTsSolution(useLegacyVersioning: boolean, tree: Tree, projectName: string, projectConfiguration: ProjectConfiguration, defaultOutputDirectory?: string): Promise<ProjectConfiguration>;
|
|
11
11
|
export declare function releaseTasks(tree: Tree): Promise<GeneratorCallback>;
|
|
@@ -91,7 +91,7 @@ async function addReleaseConfigForTsSolution(tree, projectName, projectConfigura
|
|
|
91
91
|
* Add release configuration for non-ts solution projects
|
|
92
92
|
* Add release option in project.json and add packageRoot to nx-release-publish target
|
|
93
93
|
*/
|
|
94
|
-
async function addReleaseConfigForNonTsSolution(tree, projectName, projectConfiguration, defaultOutputDirectory = 'dist') {
|
|
94
|
+
async function addReleaseConfigForNonTsSolution(useLegacyVersioning, tree, projectName, projectConfiguration, defaultOutputDirectory = 'dist') {
|
|
95
95
|
const packageRoot = (0, devkit_1.joinPathFragments)(defaultOutputDirectory, '{projectRoot}');
|
|
96
96
|
projectConfiguration.targets ??= {};
|
|
97
97
|
projectConfiguration.targets['nx-release-publish'] = {
|
|
@@ -99,17 +99,31 @@ async function addReleaseConfigForNonTsSolution(tree, projectName, projectConfig
|
|
|
99
99
|
packageRoot,
|
|
100
100
|
},
|
|
101
101
|
};
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
102
|
+
if (useLegacyVersioning) {
|
|
103
|
+
projectConfiguration.release = {
|
|
104
|
+
version: {
|
|
105
|
+
generatorOptions: {
|
|
106
|
+
packageRoot,
|
|
107
|
+
// using git tags to determine the current version is required here because
|
|
108
|
+
// the version in the package root is overridden with every build
|
|
109
|
+
currentVersionResolver: 'git-tag',
|
|
110
|
+
fallbackCurrentVersionResolver: 'disk',
|
|
111
|
+
},
|
|
112
|
+
},
|
|
113
|
+
};
|
|
114
|
+
}
|
|
115
|
+
else {
|
|
116
|
+
// TODO: re-evaluate this config in new versions
|
|
117
|
+
projectConfiguration.release = {
|
|
118
|
+
version: {
|
|
119
|
+
manifestRootsToUpdate: [packageRoot],
|
|
106
120
|
// using git tags to determine the current version is required here because
|
|
107
121
|
// the version in the package root is overridden with every build
|
|
108
122
|
currentVersionResolver: 'git-tag',
|
|
109
123
|
fallbackCurrentVersionResolver: 'disk',
|
|
110
124
|
},
|
|
111
|
-
}
|
|
112
|
-
}
|
|
125
|
+
};
|
|
126
|
+
}
|
|
113
127
|
await addReleaseConfigForTsSolution(tree, projectName, projectConfiguration);
|
|
114
128
|
return projectConfiguration;
|
|
115
129
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Tree } from '@nx/devkit';
|
|
2
|
-
import { ReleaseVersionGeneratorResult } from 'nx/src/command-line/release/version';
|
|
2
|
+
import { ReleaseVersionGeneratorResult } from 'nx/src/command-line/release/version-legacy';
|
|
3
3
|
import { ReleaseVersionGeneratorSchema } from './schema';
|
|
4
4
|
export declare function releaseVersionGenerator(tree: Tree, options: ReleaseVersionGeneratorSchema): Promise<ReleaseVersionGeneratorResult>;
|
|
5
5
|
export default releaseVersionGenerator;
|
|
@@ -11,15 +11,15 @@ const config_1 = require("nx/src/command-line/release/config/config");
|
|
|
11
11
|
const git_1 = require("nx/src/command-line/release/utils/git");
|
|
12
12
|
const resolve_semver_specifier_1 = require("nx/src/command-line/release/utils/resolve-semver-specifier");
|
|
13
13
|
const semver_1 = require("nx/src/command-line/release/utils/semver");
|
|
14
|
-
const
|
|
14
|
+
const version_legacy_1 = require("nx/src/command-line/release/version-legacy");
|
|
15
15
|
const utils_1 = require("nx/src/tasks-runner/utils");
|
|
16
16
|
const ora = require("ora");
|
|
17
17
|
const semver_2 = require("semver");
|
|
18
|
+
const update_lock_file_1 = require("../../release/utils/update-lock-file");
|
|
18
19
|
const is_locally_linked_package_version_1 = require("../../utils/is-locally-linked-package-version");
|
|
19
20
|
const npm_config_1 = require("../../utils/npm-config");
|
|
20
21
|
const resolve_local_package_dependencies_1 = require("./utils/resolve-local-package-dependencies");
|
|
21
22
|
const sort_projects_topologically_1 = require("./utils/sort-projects-topologically");
|
|
22
|
-
const update_lock_file_1 = require("./utils/update-lock-file");
|
|
23
23
|
function resolvePreIdSpecifier(currentSpecifier, preid) {
|
|
24
24
|
if (!currentSpecifier.startsWith('pre') && preid) {
|
|
25
25
|
return `pre${currentSpecifier}`;
|
|
@@ -39,10 +39,10 @@ async function releaseVersionGenerator(tree, options) {
|
|
|
39
39
|
options.specifier = options.specifier.replace(/^v/, '');
|
|
40
40
|
}
|
|
41
41
|
if (options.versionPrefix &&
|
|
42
|
-
|
|
42
|
+
version_legacy_1.validReleaseVersionPrefixes.indexOf(options.versionPrefix) === -1) {
|
|
43
43
|
throw new Error(`Invalid value for version.generatorOptions.versionPrefix: "${options.versionPrefix}"
|
|
44
44
|
|
|
45
|
-
Valid values are: ${
|
|
45
|
+
Valid values are: ${version_legacy_1.validReleaseVersionPrefixes
|
|
46
46
|
.map((s) => `"${s}"`)
|
|
47
47
|
.join(', ')}`);
|
|
48
48
|
}
|
|
@@ -54,7 +54,6 @@ Valid values are: ${version_1.validReleaseVersionPrefixes
|
|
|
54
54
|
const updateDependents = options.updateDependents ?? 'auto';
|
|
55
55
|
const updateDependentsBump = resolvePreIdSpecifier('patch', options.preid);
|
|
56
56
|
// Sort the projects topologically if update dependents is enabled
|
|
57
|
-
// TODO: maybe move this sorting to the command level?
|
|
58
57
|
const projects = updateDependents === 'never' ||
|
|
59
58
|
options.releaseGroup.projectsRelationship !== 'independent'
|
|
60
59
|
? options.projects
|
|
@@ -287,8 +286,6 @@ To fix this you will either need to add a package.json file at that location, or
|
|
|
287
286
|
logger.buffer(`🚫 No changes were detected using git history and the conventional commits standard.`);
|
|
288
287
|
break;
|
|
289
288
|
}
|
|
290
|
-
// TODO: reevaluate this prerelease logic/workflow for independent projects
|
|
291
|
-
//
|
|
292
289
|
// Always assume that if the current version is a prerelease, then the next version should be a prerelease.
|
|
293
290
|
// Users must manually graduate from a prerelease to a release by providing an explicit specifier.
|
|
294
291
|
if ((0, semver_2.prerelease)(currentVersion ?? '')) {
|
|
@@ -490,7 +487,7 @@ To fix this you will either need to add a package.json file at that location, or
|
|
|
490
487
|
}
|
|
491
488
|
continue;
|
|
492
489
|
}
|
|
493
|
-
const newVersion = (0,
|
|
490
|
+
const newVersion = (0, version_legacy_1.deriveNewSemverVersion)(currentVersion, specifier, options.preid);
|
|
494
491
|
versionData[projectName].newVersion = newVersion;
|
|
495
492
|
(0, devkit_1.writeJson)(tree, packageJsonPath, {
|
|
496
493
|
...packageJson,
|
|
@@ -556,7 +553,7 @@ To fix this you will either need to add a package.json file at that location, or
|
|
|
556
553
|
}
|
|
557
554
|
// Bump the dependent's version if applicable and record it in the version data
|
|
558
555
|
if (forceVersionBump) {
|
|
559
|
-
const newPackageVersion = (0,
|
|
556
|
+
const newPackageVersion = (0, version_legacy_1.deriveNewSemverVersion)(currentPackageVersion, forceVersionBump, options.preid);
|
|
560
557
|
json.version = newPackageVersion;
|
|
561
558
|
// Look up any dependent projects from the transitiveLocalPackageDependents list
|
|
562
559
|
const transitiveDependentProjects = transitiveLocalPackageDependents.filter((localPackageDependency) => localPackageDependency.target === dependentProject.source);
|
|
@@ -666,7 +663,10 @@ To fix this you will either need to add a package.json file at that location, or
|
|
|
666
663
|
deletedFiles.push(...(await cb(opts.dryRun)));
|
|
667
664
|
}
|
|
668
665
|
const cwd = tree.root;
|
|
669
|
-
changedFiles.push(...(await (0, update_lock_file_1.updateLockFile)(cwd,
|
|
666
|
+
changedFiles.push(...(await (0, update_lock_file_1.updateLockFile)(cwd, {
|
|
667
|
+
...opts,
|
|
668
|
+
useLegacyVersioning: true,
|
|
669
|
+
})));
|
|
670
670
|
return { changedFiles, deletedFiles };
|
|
671
671
|
},
|
|
672
672
|
};
|
|
@@ -697,7 +697,8 @@ function createResolvePackageRoot(customPackageRoot) {
|
|
|
697
697
|
return projectNode.data.root;
|
|
698
698
|
}
|
|
699
699
|
if (projectNode.data.root === '.') {
|
|
700
|
-
//
|
|
700
|
+
// This is a temporary workaround to fix NXC-574 until NXC-573 is resolved.
|
|
701
|
+
// This has been fixed in "versioning v2"
|
|
701
702
|
return projectNode.data.root;
|
|
702
703
|
}
|
|
703
704
|
return (0, utils_1.interpolate)(customPackageRoot, {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { ReleaseVersionGeneratorSchema } from 'nx/src/command-line/release/version';
|
|
1
|
+
export { ReleaseVersionGeneratorSchema } from 'nx/src/command-line/release/version-legacy';
|
|
@@ -8,6 +8,8 @@
|
|
|
8
8
|
"properties": {
|
|
9
9
|
"projects": {
|
|
10
10
|
"type": "array",
|
|
11
|
+
"hidden": true,
|
|
12
|
+
"$comment": "This is not configured/passed by the user. It is provided by the version command.",
|
|
11
13
|
"description": "The ProjectGraphProjectNodes being versioned in the current execution.",
|
|
12
14
|
"items": {
|
|
13
15
|
"type": "object"
|
|
@@ -15,16 +17,33 @@
|
|
|
15
17
|
},
|
|
16
18
|
"projectGraph": {
|
|
17
19
|
"type": "object",
|
|
20
|
+
"hidden": true,
|
|
21
|
+
"$comment": "This is not configured/passed by the user. It is provided by the version command.",
|
|
18
22
|
"description": "ProjectGraph instance"
|
|
19
23
|
},
|
|
20
|
-
"specifier": {
|
|
21
|
-
"type": "string",
|
|
22
|
-
"description": "Exact version or semver keyword to apply to the selected release group. Overrides specifierSource."
|
|
23
|
-
},
|
|
24
24
|
"releaseGroup": {
|
|
25
25
|
"type": "object",
|
|
26
|
+
"hidden": true,
|
|
27
|
+
"$comment": "This is not configured/passed by the user. It is provided by the version command.",
|
|
26
28
|
"description": "The resolved release group configuration, including name, relevant to all projects in the current execution."
|
|
27
29
|
},
|
|
30
|
+
"conventionalCommitsConfig": {
|
|
31
|
+
"type": "object",
|
|
32
|
+
"hidden": true,
|
|
33
|
+
"$comment": "This is not configured/passed by the user. It is provided by the version command.",
|
|
34
|
+
"description": "The conventional commits configuration to use when determining the next version of the project.",
|
|
35
|
+
"default": {}
|
|
36
|
+
},
|
|
37
|
+
"firstRelease": {
|
|
38
|
+
"type": "boolean",
|
|
39
|
+
"hidden": true,
|
|
40
|
+
"$comment": "This is not configured/passed by the user. It is provided by the version command.",
|
|
41
|
+
"description": "Whether this is the first release of the project (which skips some validation within the generator)."
|
|
42
|
+
},
|
|
43
|
+
"specifier": {
|
|
44
|
+
"type": "string",
|
|
45
|
+
"description": "Exact version or semver keyword to apply to the selected release group. Overrides specifierSource."
|
|
46
|
+
},
|
|
28
47
|
"specifierSource": {
|
|
29
48
|
"type": "string",
|
|
30
49
|
"default": "prompt",
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare function updateLockFile(cwd: string, { dryRun, verbose, useLegacyVersioning, options, }: {
|
|
2
|
+
dryRun?: boolean;
|
|
3
|
+
verbose?: boolean;
|
|
4
|
+
useLegacyVersioning?: boolean;
|
|
5
|
+
options?: {
|
|
6
|
+
skipLockFileUpdate?: boolean;
|
|
7
|
+
installArgs?: string;
|
|
8
|
+
installIgnoreScripts?: boolean;
|
|
9
|
+
};
|
|
10
|
+
}): Promise<string[]>;
|
|
@@ -7,8 +7,8 @@ const client_1 = require("nx/src/daemon/client/client");
|
|
|
7
7
|
// eslint-disable-next-line @typescript-eslint/no-restricted-imports
|
|
8
8
|
const lock_file_1 = require("nx/src/plugins/js/lock-file/lock-file");
|
|
9
9
|
const semver_1 = require("semver");
|
|
10
|
-
async function updateLockFile(cwd, { dryRun, verbose,
|
|
11
|
-
if (
|
|
10
|
+
async function updateLockFile(cwd, { dryRun, verbose, useLegacyVersioning, options, }) {
|
|
11
|
+
if (options?.skipLockFileUpdate) {
|
|
12
12
|
if (verbose) {
|
|
13
13
|
console.log('\nSkipped lock file update because skipLockFileUpdate was set.');
|
|
14
14
|
}
|
|
@@ -36,10 +36,10 @@ async function updateLockFile(cwd, { dryRun, verbose, generatorOptions, }) {
|
|
|
36
36
|
await client_1.daemonClient.stop();
|
|
37
37
|
}
|
|
38
38
|
const packageManagerCommands = (0, devkit_1.getPackageManagerCommand)(packageManager);
|
|
39
|
-
let installArgs =
|
|
39
|
+
let installArgs = options?.installArgs || '';
|
|
40
40
|
devkit_1.output.logSingleLine(`Updating ${packageManager} lock file`);
|
|
41
41
|
let env = {};
|
|
42
|
-
if (
|
|
42
|
+
if (options?.installIgnoreScripts) {
|
|
43
43
|
if (packageManager === 'yarn') {
|
|
44
44
|
env = { YARN_ENABLE_SCRIPTS: 'false' };
|
|
45
45
|
}
|
|
@@ -62,7 +62,7 @@ async function updateLockFile(cwd, { dryRun, verbose, generatorOptions, }) {
|
|
|
62
62
|
if (dryRun) {
|
|
63
63
|
return [];
|
|
64
64
|
}
|
|
65
|
-
execLockFileUpdate(command, cwd, env);
|
|
65
|
+
execLockFileUpdate(command, cwd, env, useLegacyVersioning);
|
|
66
66
|
if (isDaemonEnabled) {
|
|
67
67
|
try {
|
|
68
68
|
await client_1.daemonClient.startInBackground();
|
|
@@ -79,7 +79,7 @@ async function updateLockFile(cwd, { dryRun, verbose, generatorOptions, }) {
|
|
|
79
79
|
}
|
|
80
80
|
return [lockFile];
|
|
81
81
|
}
|
|
82
|
-
function execLockFileUpdate(command, cwd, env
|
|
82
|
+
function execLockFileUpdate(command, cwd, env, useLegacyVersioning) {
|
|
83
83
|
try {
|
|
84
84
|
const LARGE_BUFFER = 1024 * 1000000;
|
|
85
85
|
(0, child_process_1.execSync)(command, {
|
|
@@ -93,13 +93,16 @@ function execLockFileUpdate(command, cwd, env = {}) {
|
|
|
93
93
|
});
|
|
94
94
|
}
|
|
95
95
|
catch (e) {
|
|
96
|
+
const configPathStart = useLegacyVersioning
|
|
97
|
+
? 'release.version.generatorOptions'
|
|
98
|
+
: 'release.version.versionActionsOptions';
|
|
96
99
|
devkit_1.output.error({
|
|
97
100
|
title: `Error updating lock file with command '${command}'`,
|
|
98
101
|
bodyLines: [
|
|
99
102
|
`Verify that '${command}' succeeds when run from the workspace root.`,
|
|
100
|
-
`To configure a string of arguments to be passed to this command, set the '
|
|
101
|
-
`To ignore install lifecycle scripts, set '
|
|
102
|
-
`To disable this step entirely, set '
|
|
103
|
+
`To configure a string of arguments to be passed to this command, set the '${configPathStart}.installArgs' property in nx.json.`,
|
|
104
|
+
`To ignore install lifecycle scripts, set '${configPathStart}.installIgnoreScripts' to true in nx.json.`,
|
|
105
|
+
`To disable this step entirely, set '${configPathStart}.skipLockFileUpdate' to true in nx.json.`,
|
|
103
106
|
],
|
|
104
107
|
});
|
|
105
108
|
throw e;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { ProjectGraph, Tree } from '@nx/devkit';
|
|
2
|
+
import { AfterAllProjectsVersioned, VersionActions } from 'nx/release';
|
|
3
|
+
import type { NxReleaseVersionV2Configuration } from 'nx/src/config/nx-json';
|
|
4
|
+
export declare const afterAllProjectsVersioned: AfterAllProjectsVersioned;
|
|
5
|
+
export default class JsVersionActions extends VersionActions {
|
|
6
|
+
validManifestFilenames: string[];
|
|
7
|
+
readCurrentVersionFromSourceManifest(tree: Tree): Promise<{
|
|
8
|
+
currentVersion: string;
|
|
9
|
+
manifestPath: string;
|
|
10
|
+
}>;
|
|
11
|
+
readCurrentVersionFromRegistry(tree: Tree, currentVersionResolverMetadata: NxReleaseVersionV2Configuration['currentVersionResolverMetadata']): Promise<{
|
|
12
|
+
currentVersion: string;
|
|
13
|
+
logText: string;
|
|
14
|
+
}>;
|
|
15
|
+
readCurrentVersionOfDependency(tree: Tree, projectGraph: ProjectGraph, dependencyProjectName: string): Promise<{
|
|
16
|
+
currentVersion: string | null;
|
|
17
|
+
dependencyCollection: string | null;
|
|
18
|
+
}>;
|
|
19
|
+
isLocalDependencyProtocol(versionSpecifier: string): Promise<boolean>;
|
|
20
|
+
updateProjectVersion(tree: Tree, newVersion: string): Promise<string[]>;
|
|
21
|
+
updateProjectDependencies(tree: Tree, projectGraph: ProjectGraph, dependenciesToUpdate: Record<string, string>): Promise<string[]>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.afterAllProjectsVersioned = void 0;
|
|
4
|
+
const devkit_1 = require("@nx/devkit");
|
|
5
|
+
const node_child_process_1 = require("node:child_process");
|
|
6
|
+
const node_path_1 = require("node:path");
|
|
7
|
+
const release_1 = require("nx/release");
|
|
8
|
+
const npm_config_1 = require("../utils/npm-config");
|
|
9
|
+
const update_lock_file_1 = require("./utils/update-lock-file");
|
|
10
|
+
const chalk = require("chalk");
|
|
11
|
+
const afterAllProjectsVersioned = async (cwd, opts) => {
|
|
12
|
+
return {
|
|
13
|
+
changedFiles: await (0, update_lock_file_1.updateLockFile)(cwd, {
|
|
14
|
+
...opts,
|
|
15
|
+
useLegacyVersioning: false,
|
|
16
|
+
}),
|
|
17
|
+
deletedFiles: [],
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
exports.afterAllProjectsVersioned = afterAllProjectsVersioned;
|
|
21
|
+
// Cache at the module level to avoid re-detecting the package manager for each instance
|
|
22
|
+
let pm;
|
|
23
|
+
class JsVersionActions extends release_1.VersionActions {
|
|
24
|
+
constructor() {
|
|
25
|
+
super(...arguments);
|
|
26
|
+
this.validManifestFilenames = ['package.json'];
|
|
27
|
+
}
|
|
28
|
+
async readCurrentVersionFromSourceManifest(tree) {
|
|
29
|
+
const sourcePackageJsonPath = (0, node_path_1.join)(this.projectGraphNode.data.root, 'package.json');
|
|
30
|
+
try {
|
|
31
|
+
const packageJson = (0, devkit_1.readJson)(tree, sourcePackageJsonPath);
|
|
32
|
+
return {
|
|
33
|
+
manifestPath: sourcePackageJsonPath,
|
|
34
|
+
currentVersion: packageJson.version,
|
|
35
|
+
};
|
|
36
|
+
}
|
|
37
|
+
catch {
|
|
38
|
+
throw new Error(`Unable to determine the current version for project "${this.projectGraphNode.name}" from ${sourcePackageJsonPath}, please ensure that the "version" field is set within the package.json file`);
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
async readCurrentVersionFromRegistry(tree, currentVersionResolverMetadata) {
|
|
42
|
+
const sourcePackageJsonPath = (0, node_path_1.join)(this.projectGraphNode.data.root, 'package.json');
|
|
43
|
+
const packageJson = (0, devkit_1.readJson)(tree, sourcePackageJsonPath);
|
|
44
|
+
const packageName = packageJson.name;
|
|
45
|
+
const metadata = currentVersionResolverMetadata;
|
|
46
|
+
const registryArg = typeof metadata?.registry === 'string' ? metadata.registry : undefined;
|
|
47
|
+
const tagArg = typeof metadata?.tag === 'string' ? metadata.tag : undefined;
|
|
48
|
+
const warnFn = (message) => {
|
|
49
|
+
console.log(chalk.keyword('orange')(message));
|
|
50
|
+
};
|
|
51
|
+
const { registry, tag, registryConfigKey } = await (0, npm_config_1.parseRegistryOptions)(devkit_1.workspaceRoot, {
|
|
52
|
+
packageRoot: this.projectGraphNode.data.root,
|
|
53
|
+
packageJson,
|
|
54
|
+
}, {
|
|
55
|
+
registry: registryArg,
|
|
56
|
+
tag: tagArg,
|
|
57
|
+
}, warnFn);
|
|
58
|
+
let currentVersion = null;
|
|
59
|
+
try {
|
|
60
|
+
// Must be non-blocking async to allow spinner to render
|
|
61
|
+
currentVersion = await new Promise((resolve, reject) => {
|
|
62
|
+
(0, node_child_process_1.exec)(`npm view ${packageName} version --"${registryConfigKey}=${registry}" --tag=${tag}`, {
|
|
63
|
+
windowsHide: false,
|
|
64
|
+
}, (error, stdout, stderr) => {
|
|
65
|
+
if (error) {
|
|
66
|
+
return reject(error);
|
|
67
|
+
}
|
|
68
|
+
if (stderr) {
|
|
69
|
+
return reject(stderr);
|
|
70
|
+
}
|
|
71
|
+
return resolve(stdout.trim());
|
|
72
|
+
});
|
|
73
|
+
});
|
|
74
|
+
}
|
|
75
|
+
catch { }
|
|
76
|
+
return {
|
|
77
|
+
currentVersion,
|
|
78
|
+
// Make troubleshooting easier by including the registry and tag data in the log text
|
|
79
|
+
logText: `"${registryConfigKey}=${registry}" tag=${tag}`,
|
|
80
|
+
};
|
|
81
|
+
}
|
|
82
|
+
async readCurrentVersionOfDependency(tree, projectGraph, dependencyProjectName) {
|
|
83
|
+
const sourcePackageJsonPath = (0, node_path_1.join)(this.projectGraphNode.data.root, 'package.json');
|
|
84
|
+
const json = (0, devkit_1.readJson)(tree, sourcePackageJsonPath);
|
|
85
|
+
// Resolve the package name from the project graph metadata, as it may not match the project name
|
|
86
|
+
const dependencyPackageName = projectGraph.nodes[dependencyProjectName].data.metadata?.js?.packageName;
|
|
87
|
+
const dependencyTypes = [
|
|
88
|
+
'dependencies',
|
|
89
|
+
'devDependencies',
|
|
90
|
+
'peerDependencies',
|
|
91
|
+
'optionalDependencies',
|
|
92
|
+
];
|
|
93
|
+
let currentVersion = null;
|
|
94
|
+
let dependencyCollection = null;
|
|
95
|
+
for (const depType of dependencyTypes) {
|
|
96
|
+
if (json[depType] && json[depType][dependencyPackageName]) {
|
|
97
|
+
currentVersion = json[depType][dependencyPackageName];
|
|
98
|
+
dependencyCollection = depType;
|
|
99
|
+
break;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
return {
|
|
103
|
+
currentVersion,
|
|
104
|
+
dependencyCollection,
|
|
105
|
+
};
|
|
106
|
+
}
|
|
107
|
+
// NOTE: The TODOs were carried over from the original implementation, they are not yet implemented
|
|
108
|
+
async isLocalDependencyProtocol(versionSpecifier) {
|
|
109
|
+
const localPackageProtocols = [
|
|
110
|
+
'file:', // all package managers
|
|
111
|
+
'workspace:', // not npm
|
|
112
|
+
// TODO: Support portal protocol at the project graph level before enabling here
|
|
113
|
+
// 'portal:', // modern yarn only
|
|
114
|
+
];
|
|
115
|
+
// Not using a supported local protocol
|
|
116
|
+
if (!localPackageProtocols.some((protocol) => versionSpecifier.startsWith(protocol))) {
|
|
117
|
+
return false;
|
|
118
|
+
}
|
|
119
|
+
// Supported by all package managers
|
|
120
|
+
if (versionSpecifier.startsWith('file:')) {
|
|
121
|
+
return true;
|
|
122
|
+
}
|
|
123
|
+
// Determine specific package manager in use
|
|
124
|
+
if (!pm) {
|
|
125
|
+
pm = (0, devkit_1.detectPackageManager)();
|
|
126
|
+
// pmVersion = getPackageManagerVersion(pm);
|
|
127
|
+
}
|
|
128
|
+
if (pm === 'npm' && versionSpecifier.startsWith('workspace:')) {
|
|
129
|
+
throw new Error(`The "workspace:" protocol is not yet supported by npm (https://github.com/npm/rfcs/issues/765). Please ensure you have a valid setup according to your package manager before attempting to release packages.`);
|
|
130
|
+
}
|
|
131
|
+
// TODO: Support portal protocol at the project graph level before enabling here
|
|
132
|
+
// if (
|
|
133
|
+
// version.startsWith('portal:') &&
|
|
134
|
+
// (pm !== 'yarn' || lt(pmVersion, '2.0.0'))
|
|
135
|
+
// ) {
|
|
136
|
+
// throw new Error(
|
|
137
|
+
// `The "portal:" protocol is only supported by yarn@2.0.0 and above. Please ensure you have a valid setup according to your package manager before attempting to release packages.`
|
|
138
|
+
// );
|
|
139
|
+
// }
|
|
140
|
+
return true;
|
|
141
|
+
}
|
|
142
|
+
async updateProjectVersion(tree, newVersion) {
|
|
143
|
+
const logMessages = [];
|
|
144
|
+
for (const manifestPath of this.manifestsToUpdate) {
|
|
145
|
+
(0, devkit_1.updateJson)(tree, manifestPath, (json) => {
|
|
146
|
+
json.version = newVersion;
|
|
147
|
+
return json;
|
|
148
|
+
});
|
|
149
|
+
logMessages.push(`✍️ New version ${newVersion} written to manifest: ${manifestPath}`);
|
|
150
|
+
}
|
|
151
|
+
return logMessages;
|
|
152
|
+
}
|
|
153
|
+
async updateProjectDependencies(tree, projectGraph, dependenciesToUpdate) {
|
|
154
|
+
const numDependenciesToUpdate = Object.keys(dependenciesToUpdate).length;
|
|
155
|
+
const depText = numDependenciesToUpdate === 1 ? 'dependency' : 'dependencies';
|
|
156
|
+
if (numDependenciesToUpdate === 0) {
|
|
157
|
+
return [];
|
|
158
|
+
}
|
|
159
|
+
const logMessages = [];
|
|
160
|
+
for (const manifestPath of this.manifestsToUpdate) {
|
|
161
|
+
(0, devkit_1.updateJson)(tree, manifestPath, (json) => {
|
|
162
|
+
const dependencyTypes = [
|
|
163
|
+
'dependencies',
|
|
164
|
+
'devDependencies',
|
|
165
|
+
'peerDependencies',
|
|
166
|
+
'optionalDependencies',
|
|
167
|
+
];
|
|
168
|
+
for (const depType of dependencyTypes) {
|
|
169
|
+
if (json[depType]) {
|
|
170
|
+
for (const [dep, version] of Object.entries(dependenciesToUpdate)) {
|
|
171
|
+
// Resolve the package name from the project graph metadata, as it may not match the project name
|
|
172
|
+
const packageName = projectGraph.nodes[dep].data.metadata?.js?.packageName;
|
|
173
|
+
if (!packageName) {
|
|
174
|
+
throw new Error(`Unable to determine the package name for project "${dep}" from the project graph metadata, please ensure that the "@nx/js" plugin is installed and the project graph has been built. If the issue persists, please report this issue on https://github.com/nrwl/nx/issues`);
|
|
175
|
+
}
|
|
176
|
+
if (json[depType][packageName]) {
|
|
177
|
+
json[depType][packageName] = version;
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
return json;
|
|
183
|
+
});
|
|
184
|
+
logMessages.push(`✍️ Updated ${numDependenciesToUpdate} ${depText} in manifest: ${manifestPath}`);
|
|
185
|
+
}
|
|
186
|
+
return logMessages;
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
exports.default = JsVersionActions;
|
|
@@ -158,7 +158,7 @@ async function addProjectToTsSolutionWorkspace(tree, projectDir) {
|
|
|
158
158
|
let pattern = projectDir;
|
|
159
159
|
if (baseDir !== '.') {
|
|
160
160
|
const patterns = (0, package_manager_workspaces_1.getPackageManagerWorkspacesPatterns)(tree);
|
|
161
|
-
const projectsBefore = await (0, devkit_1.globAsync)(tree, patterns);
|
|
161
|
+
const projectsBefore = patterns.length > 0 ? await (0, devkit_1.globAsync)(tree, patterns) : [];
|
|
162
162
|
patterns.push(`${baseDir}/*/package.json`);
|
|
163
163
|
const projectsAfter = await (0, devkit_1.globAsync)(tree, patterns);
|
|
164
164
|
if (projectsBefore.length + 1 === projectsAfter.length) {
|