@nx/js 0.0.0-pr-30418-4e2b721 → 0.0.0-pr-3-ec41644
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 +4 -5
- package/src/executors/node/node.impl.js +1 -1
- package/src/generators/init/init.js +2 -1
- package/src/generators/library/library.js +17 -27
- package/src/generators/release-version/release-version.js +1 -4
- package/src/generators/release-version/schema.d.ts +1 -1
- package/src/generators/release-version/schema.json +4 -23
- package/src/generators/release-version/utils/update-lock-file.d.ts +2 -7
- package/src/generators/release-version/utils/update-lock-file.js +9 -12
- package/src/plugins/typescript/plugin.js +97 -30
- package/src/plugins/typescript/util.d.ts +0 -8
- package/src/plugins/typescript/util.js +1 -73
- package/src/utils/assets/copy-assets-handler.js +5 -11
- package/src/utils/buildable-libs-utils.js +8 -10
- package/src/utils/package-manager-workspaces.d.ts +0 -1
- package/src/utils/package-manager-workspaces.js +7 -12
- package/src/utils/typescript/plugin.d.ts +1 -1
- package/src/utils/typescript/plugin.js +16 -27
- package/src/utils/typescript/ts-solution-setup.d.ts +2 -3
- package/src/utils/typescript/ts-solution-setup.js +9 -32
- package/src/generators/release-version/version-actions.d.ts +0 -28
- package/src/generators/release-version/version-actions.js +0 -213
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/js",
|
|
3
|
-
"version": "0.0.0-pr-
|
|
3
|
+
"version": "0.0.0-pr-3-ec41644",
|
|
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": "0.0.0-pr-
|
|
43
|
-
"@nx/workspace": "0.0.0-pr-
|
|
42
|
+
"@nx/devkit": "0.0.0-pr-3-ec41644",
|
|
43
|
+
"@nx/workspace": "0.0.0-pr-3-ec41644",
|
|
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",
|
|
@@ -52,11 +52,10 @@
|
|
|
52
52
|
"ignore": "^5.0.4",
|
|
53
53
|
"js-tokens": "^4.0.0",
|
|
54
54
|
"jsonc-parser": "3.2.0",
|
|
55
|
+
"minimatch": "9.0.3",
|
|
55
56
|
"npm-package-arg": "11.0.1",
|
|
56
57
|
"npm-run-path": "^4.0.1",
|
|
57
58
|
"ora": "5.3.0",
|
|
58
|
-
"picocolors": "^1.1.0",
|
|
59
|
-
"picomatch": "4.0.2",
|
|
60
59
|
"semver": "^7.5.3",
|
|
61
60
|
"source-map-support": "0.5.19",
|
|
62
61
|
"tinyglobby": "^0.2.10",
|
|
@@ -298,7 +298,7 @@ function getFileToRun(context, project, buildOptions, buildTargetExecutor) {
|
|
|
298
298
|
const outputFilePath = (0, utils_1.interpolate)(outputPath, {
|
|
299
299
|
projectName: project.name,
|
|
300
300
|
projectRoot: project.data.root,
|
|
301
|
-
workspaceRoot:
|
|
301
|
+
workspaceRoot: '',
|
|
302
302
|
});
|
|
303
303
|
return path.join(outputFilePath, 'main.js');
|
|
304
304
|
}
|
|
@@ -54,7 +54,8 @@ async function initGeneratorInternal(tree, schema) {
|
|
|
54
54
|
schema.addPlugin ??=
|
|
55
55
|
process.env.NX_ADD_PLUGINS !== 'false' &&
|
|
56
56
|
nxJson.useInferencePlugins !== false;
|
|
57
|
-
schema.addTsPlugin ??=
|
|
57
|
+
schema.addTsPlugin ??=
|
|
58
|
+
schema.addPlugin && process.env.NX_ADD_TS_PLUGIN !== 'false';
|
|
58
59
|
if (schema.addTsPlugin) {
|
|
59
60
|
await (0, add_plugin_1.addPlugin)(tree, await (0, devkit_1.createProjectGraphAsync)(), '@nx/js/typescript', plugin_1.createNodesV2, {
|
|
60
61
|
typecheck: [
|
|
@@ -22,6 +22,7 @@ const ts_solution_setup_1 = require("../../utils/typescript/ts-solution-setup");
|
|
|
22
22
|
const versions_1 = require("../../utils/versions");
|
|
23
23
|
const init_1 = require("../init/init");
|
|
24
24
|
const sort_fields_1 = require("../../utils/package-json/sort-fields");
|
|
25
|
+
const get_import_path_1 = require("../../utils/get-import-path");
|
|
25
26
|
const add_release_config_1 = require("./utils/add-release-config");
|
|
26
27
|
const defaultOutputDirectory = 'dist';
|
|
27
28
|
async function libraryGenerator(tree, schema) {
|
|
@@ -42,16 +43,16 @@ async function libraryGeneratorInternal(tree, schema) {
|
|
|
42
43
|
formatter: (0, ts_solution_setup_1.isUsingTsSolutionSetup)(tree) ? 'none' : 'prettier',
|
|
43
44
|
}));
|
|
44
45
|
const options = await normalizeOptions(tree, schema);
|
|
46
|
+
// If we are using the new TS solution
|
|
47
|
+
// We need to update the workspace file (package.json or pnpm-workspaces.yaml) to include the new project
|
|
48
|
+
if (options.isUsingTsSolutionConfig) {
|
|
49
|
+
(0, ts_solution_setup_1.addProjectToTsSolutionWorkspace)(tree, options.projectRoot);
|
|
50
|
+
}
|
|
45
51
|
createFiles(tree, options);
|
|
46
52
|
await configureProject(tree, options);
|
|
47
53
|
if (!options.skipPackageJson) {
|
|
48
54
|
tasks.push(addProjectDependencies(tree, options));
|
|
49
55
|
}
|
|
50
|
-
// If we are using the new TS solution
|
|
51
|
-
// We need to update the workspace file (package.json or pnpm-workspaces.yaml) to include the new project
|
|
52
|
-
if (options.isUsingTsSolutionConfig) {
|
|
53
|
-
await (0, ts_solution_setup_1.addProjectToTsSolutionWorkspace)(tree, options.projectRoot);
|
|
54
|
-
}
|
|
55
56
|
if (options.bundler === 'rollup') {
|
|
56
57
|
const { configurationGenerator } = (0, devkit_1.ensurePackage)('@nx/rollup', versions_1.nxVersion);
|
|
57
58
|
await configurationGenerator(tree, {
|
|
@@ -160,7 +161,7 @@ async function libraryGeneratorInternal(tree, schema) {
|
|
|
160
161
|
async function configureProject(tree, options) {
|
|
161
162
|
if (options.hasPlugin) {
|
|
162
163
|
const nxJson = (0, devkit_1.readNxJson)(tree);
|
|
163
|
-
(0, plugin_1.ensureProjectIsIncludedInPluginRegistrations)(nxJson, options.projectRoot
|
|
164
|
+
(0, plugin_1.ensureProjectIsIncludedInPluginRegistrations)(nxJson, options.projectRoot);
|
|
164
165
|
(0, devkit_1.updateNxJson)(tree, nxJson);
|
|
165
166
|
}
|
|
166
167
|
const projectConfiguration = {
|
|
@@ -235,7 +236,9 @@ async function configureProject(tree, options) {
|
|
|
235
236
|
}
|
|
236
237
|
}
|
|
237
238
|
// empty targets are cleaned up automatically by `updateProjectConfiguration`
|
|
238
|
-
(0, devkit_1.updateProjectConfiguration)(tree, options.
|
|
239
|
+
(0, devkit_1.updateProjectConfiguration)(tree, options.isUsingTsSolutionConfig
|
|
240
|
+
? options.importPath ?? options.name
|
|
241
|
+
: options.name, projectConfiguration);
|
|
239
242
|
}
|
|
240
243
|
else if (options.config === 'workspace' || options.config === 'project') {
|
|
241
244
|
(0, devkit_1.addProjectConfiguration)(tree, options.name, projectConfiguration);
|
|
@@ -465,11 +468,6 @@ function createFiles(tree, options) {
|
|
|
465
468
|
format: ['esm'],
|
|
466
469
|
});
|
|
467
470
|
}
|
|
468
|
-
if (!options.useProjectJson && options.name !== options.importPath) {
|
|
469
|
-
packageJson.nx = {
|
|
470
|
-
name: options.name,
|
|
471
|
-
};
|
|
472
|
-
}
|
|
473
471
|
(0, devkit_1.writeJson)(tree, packageJsonPath, packageJson);
|
|
474
472
|
}
|
|
475
473
|
if (options.config === 'npm-scripts') {
|
|
@@ -529,7 +527,7 @@ function replaceJestConfig(tree, options) {
|
|
|
529
527
|
});
|
|
530
528
|
}
|
|
531
529
|
async function normalizeOptions(tree, options) {
|
|
532
|
-
await (0, project_name_and_root_utils_1.
|
|
530
|
+
await (0, project_name_and_root_utils_1.ensureProjectName)(tree, options, 'library');
|
|
533
531
|
const nxJson = (0, devkit_1.readNxJson)(tree);
|
|
534
532
|
options.addPlugin ??=
|
|
535
533
|
process.env.NX_ADD_PLUGINS !== 'false' &&
|
|
@@ -631,7 +629,9 @@ async function normalizeOptions(tree, options) {
|
|
|
631
629
|
return {
|
|
632
630
|
...options,
|
|
633
631
|
fileName,
|
|
634
|
-
name: isUsingTsSolutionConfig
|
|
632
|
+
name: isUsingTsSolutionConfig
|
|
633
|
+
? (0, get_import_path_1.getImportPath)(tree, projectName)
|
|
634
|
+
: projectName,
|
|
635
635
|
projectNames,
|
|
636
636
|
projectRoot,
|
|
637
637
|
parsedTags,
|
|
@@ -719,7 +719,9 @@ function createProjectTsConfigs(tree, options) {
|
|
|
719
719
|
.map(([k, v]) => `${JSON.stringify(k)}: ${JSON.stringify(v)}`)
|
|
720
720
|
.join(',\n '),
|
|
721
721
|
tmpl: '',
|
|
722
|
-
outDir: '
|
|
722
|
+
outDir: options.bundler === 'tsc'
|
|
723
|
+
? 'dist'
|
|
724
|
+
: `out-tsc/${options.projectRoot.split('/').pop()}`,
|
|
723
725
|
emitDeclarationOnly: options.bundler === 'tsc' ? false : true,
|
|
724
726
|
});
|
|
725
727
|
// tsconfig.json
|
|
@@ -732,12 +734,6 @@ function createProjectTsConfigs(tree, options) {
|
|
|
732
734
|
json.references.push({
|
|
733
735
|
path: './tsconfig.lib.json',
|
|
734
736
|
});
|
|
735
|
-
// If using `tsc` to build, then we do not want a typecheck target that duplicates the work, since both run `tsc`.
|
|
736
|
-
// This applies to `@nx/js/typescript` plugin only.
|
|
737
|
-
if (options.bundler === 'tsc') {
|
|
738
|
-
json['nx'] ??= {};
|
|
739
|
-
json['nx'].addTypecheckTarget = false;
|
|
740
|
-
}
|
|
741
737
|
return json;
|
|
742
738
|
});
|
|
743
739
|
}
|
|
@@ -749,12 +745,6 @@ function createProjectTsConfigs(tree, options) {
|
|
|
749
745
|
include: [],
|
|
750
746
|
references: [{ path: './tsconfig.lib.json' }],
|
|
751
747
|
};
|
|
752
|
-
// If using `tsc` to build, then we do not want a typecheck target that duplicates the work, since both run `tsc`.
|
|
753
|
-
// This applies to `@nx/js/typescript` plugin only.
|
|
754
|
-
if (options.bundler === 'tsc') {
|
|
755
|
-
tsconfig['nx'] ??= {};
|
|
756
|
-
tsconfig['nx'].addTypecheckTarget = false;
|
|
757
|
-
}
|
|
758
748
|
(0, devkit_1.writeJson)(tree, (0, devkit_1.joinPathFragments)(options.projectRoot, 'tsconfig.json'), tsconfig);
|
|
759
749
|
// update root project tsconfig.json references with the new lib tsconfig
|
|
760
750
|
(0, devkit_1.updateJson)(tree, 'tsconfig.json', (json) => {
|
|
@@ -666,10 +666,7 @@ To fix this you will either need to add a package.json file at that location, or
|
|
|
666
666
|
deletedFiles.push(...(await cb(opts.dryRun)));
|
|
667
667
|
}
|
|
668
668
|
const cwd = tree.root;
|
|
669
|
-
changedFiles.push(...(await (0, update_lock_file_1.updateLockFile)(cwd,
|
|
670
|
-
...opts,
|
|
671
|
-
useLegacyVersioning: true,
|
|
672
|
-
})));
|
|
669
|
+
changedFiles.push(...(await (0, update_lock_file_1.updateLockFile)(cwd, opts)));
|
|
673
670
|
return { changedFiles, deletedFiles };
|
|
674
671
|
},
|
|
675
672
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { ReleaseVersionGeneratorSchema } from 'nx/src/command-line/release/version
|
|
1
|
+
export { ReleaseVersionGeneratorSchema } from 'nx/src/command-line/release/version';
|
|
@@ -8,8 +8,6 @@
|
|
|
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.",
|
|
13
11
|
"description": "The ProjectGraphProjectNodes being versioned in the current execution.",
|
|
14
12
|
"items": {
|
|
15
13
|
"type": "object"
|
|
@@ -17,33 +15,16 @@
|
|
|
17
15
|
},
|
|
18
16
|
"projectGraph": {
|
|
19
17
|
"type": "object",
|
|
20
|
-
"hidden": true,
|
|
21
|
-
"$comment": "This is not configured/passed by the user. It is provided by the version command.",
|
|
22
18
|
"description": "ProjectGraph instance"
|
|
23
19
|
},
|
|
24
|
-
"releaseGroup": {
|
|
25
|
-
"type": "object",
|
|
26
|
-
"hidden": true,
|
|
27
|
-
"$comment": "This is not configured/passed by the user. It is provided by the version command.",
|
|
28
|
-
"description": "The resolved release group configuration, including name, relevant to all projects in the current execution."
|
|
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
20
|
"specifier": {
|
|
44
21
|
"type": "string",
|
|
45
22
|
"description": "Exact version or semver keyword to apply to the selected release group. Overrides specifierSource."
|
|
46
23
|
},
|
|
24
|
+
"releaseGroup": {
|
|
25
|
+
"type": "object",
|
|
26
|
+
"description": "The resolved release group configuration, including name, relevant to all projects in the current execution."
|
|
27
|
+
},
|
|
47
28
|
"specifierSource": {
|
|
48
29
|
"type": "string",
|
|
49
30
|
"default": "prompt",
|
|
@@ -1,10 +1,5 @@
|
|
|
1
|
-
export declare function updateLockFile(cwd: string, { dryRun, verbose,
|
|
1
|
+
export declare function updateLockFile(cwd: string, { dryRun, verbose, generatorOptions, }: {
|
|
2
2
|
dryRun?: boolean;
|
|
3
3
|
verbose?: boolean;
|
|
4
|
-
|
|
5
|
-
options?: {
|
|
6
|
-
skipLockFileUpdate?: boolean;
|
|
7
|
-
installArgs?: string;
|
|
8
|
-
installIgnoreScripts?: boolean;
|
|
9
|
-
};
|
|
4
|
+
generatorOptions?: Record<string, unknown>;
|
|
10
5
|
}): 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, generatorOptions, }) {
|
|
11
|
+
if (generatorOptions?.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, useLegacyVersioning, optio
|
|
|
36
36
|
await client_1.daemonClient.stop();
|
|
37
37
|
}
|
|
38
38
|
const packageManagerCommands = (0, devkit_1.getPackageManagerCommand)(packageManager);
|
|
39
|
-
let installArgs =
|
|
39
|
+
let installArgs = generatorOptions?.installArgs || '';
|
|
40
40
|
devkit_1.output.logSingleLine(`Updating ${packageManager} lock file`);
|
|
41
41
|
let env = {};
|
|
42
|
-
if (
|
|
42
|
+
if (generatorOptions?.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, useLegacyVersioning, optio
|
|
|
62
62
|
if (dryRun) {
|
|
63
63
|
return [];
|
|
64
64
|
}
|
|
65
|
-
execLockFileUpdate(command, cwd, env
|
|
65
|
+
execLockFileUpdate(command, cwd, env);
|
|
66
66
|
if (isDaemonEnabled) {
|
|
67
67
|
try {
|
|
68
68
|
await client_1.daemonClient.startInBackground();
|
|
@@ -79,7 +79,7 @@ async function updateLockFile(cwd, { dryRun, verbose, useLegacyVersioning, optio
|
|
|
79
79
|
}
|
|
80
80
|
return [lockFile];
|
|
81
81
|
}
|
|
82
|
-
function execLockFileUpdate(command, cwd, env
|
|
82
|
+
function execLockFileUpdate(command, cwd, env = {}) {
|
|
83
83
|
try {
|
|
84
84
|
const LARGE_BUFFER = 1024 * 1000000;
|
|
85
85
|
(0, child_process_1.execSync)(command, {
|
|
@@ -93,16 +93,13 @@ function execLockFileUpdate(command, cwd, env, useLegacyVersioning) {
|
|
|
93
93
|
});
|
|
94
94
|
}
|
|
95
95
|
catch (e) {
|
|
96
|
-
const configPathStart = useLegacyVersioning
|
|
97
|
-
? 'release.version.generatorOptions'
|
|
98
|
-
: 'release.version.versionActionsOptions';
|
|
99
96
|
devkit_1.output.error({
|
|
100
97
|
title: `Error updating lock file with command '${command}'`,
|
|
101
98
|
bodyLines: [
|
|
102
99
|
`Verify that '${command}' succeeds when run from the workspace root.`,
|
|
103
|
-
`To configure a string of arguments to be passed to this command, set the '
|
|
104
|
-
`To ignore install lifecycle scripts, set '
|
|
105
|
-
`To disable this step entirely, set '
|
|
100
|
+
`To configure a string of arguments to be passed to this command, set the 'release.version.generatorOptions.installArgs' property in nx.json.`,
|
|
101
|
+
`To ignore install lifecycle scripts, set 'release.version.generatorOptions.installIgnoreScripts' to true in nx.json.`,
|
|
102
|
+
`To disable this step entirely, set 'release.version.generatorOptions.skipLockFileUpdate' to true in nx.json.`,
|
|
106
103
|
],
|
|
107
104
|
});
|
|
108
105
|
throw e;
|
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.createNodes = exports.createNodesV2 = exports.PLUGIN_NAME = exports.createDependencies = void 0;
|
|
4
4
|
const devkit_1 = require("@nx/devkit");
|
|
5
5
|
const get_named_inputs_1 = require("@nx/devkit/src/utils/get-named-inputs");
|
|
6
|
-
const
|
|
6
|
+
const minimatch_1 = require("minimatch");
|
|
7
7
|
const node_fs_1 = require("node:fs");
|
|
8
8
|
const node_path_1 = require("node:path");
|
|
9
9
|
const posix = require("node:path/posix");
|
|
@@ -178,9 +178,7 @@ function buildTscTargets(configFilePath, projectRoot, options, context) {
|
|
|
178
178
|
const tsConfig = retrieveTsConfigFromCache(configFilePath, context.workspaceRoot);
|
|
179
179
|
let internalProjectReferences;
|
|
180
180
|
// Typecheck target
|
|
181
|
-
if ((0, node_path_1.basename)(configFilePath) === 'tsconfig.json' &&
|
|
182
|
-
options.typecheck &&
|
|
183
|
-
tsConfig.raw?.['nx']?.addTypecheckTarget !== false) {
|
|
181
|
+
if ((0, node_path_1.basename)(configFilePath) === 'tsconfig.json' && options.typecheck) {
|
|
184
182
|
internalProjectReferences = resolveInternalProjectReferences(tsConfig, context.workspaceRoot, projectRoot);
|
|
185
183
|
const externalProjectReferences = resolveShallowExternalProjectReferences(tsConfig, context.workspaceRoot, projectRoot);
|
|
186
184
|
const targetName = options.typecheck.targetName;
|
|
@@ -216,7 +214,7 @@ function buildTscTargets(configFilePath, projectRoot, options, context) {
|
|
|
216
214
|
// Build target
|
|
217
215
|
if (options.build &&
|
|
218
216
|
(0, node_path_1.basename)(configFilePath) === options.build.configName &&
|
|
219
|
-
|
|
217
|
+
isValidPackageJsonBuildConfig(tsConfig, context.workspaceRoot, projectRoot)) {
|
|
220
218
|
internalProjectReferences ??= resolveInternalProjectReferences(tsConfig, context.workspaceRoot, projectRoot);
|
|
221
219
|
const targetName = options.build.targetName;
|
|
222
220
|
targets[targetName] = {
|
|
@@ -278,8 +276,8 @@ function getInputs(namedInputs, configFilePath, tsConfig, internalProjectReferen
|
|
|
278
276
|
});
|
|
279
277
|
const normalize = (p) => (p.startsWith('./') ? p.slice(2) : p);
|
|
280
278
|
config.raw.exclude.forEach((excludePath) => {
|
|
281
|
-
if (!otherFilesInclude.some((includePath) =>
|
|
282
|
-
|
|
279
|
+
if (!otherFilesInclude.some((includePath) => (0, minimatch_1.minimatch)(normalize(includePath), normalize(excludePath)) ||
|
|
280
|
+
(0, minimatch_1.minimatch)(normalize(excludePath), normalize(includePath)))) {
|
|
283
281
|
excludePaths.add(excludePath);
|
|
284
282
|
}
|
|
285
283
|
});
|
|
@@ -371,6 +369,87 @@ function getOutputs(configFilePath, tsConfig, internalProjectReferences, workspa
|
|
|
371
369
|
});
|
|
372
370
|
return Array.from(outputs);
|
|
373
371
|
}
|
|
372
|
+
/**
|
|
373
|
+
* Validates the build configuration of a `package.json` file by ensuring that paths in the `exports`, `module`,
|
|
374
|
+
* and `main` fields reference valid output paths within the `outDir` defined in the TypeScript configuration.
|
|
375
|
+
* Priority is given to the `exports` field, specifically the `.` export if defined. If `exports` is not defined,
|
|
376
|
+
* the function falls back to validating `main` and `module` fields. If `outFile` is specified, it validates that the file
|
|
377
|
+
* is located within the output directory.
|
|
378
|
+
* If no `package.json` file exists, it assumes the configuration is valid.
|
|
379
|
+
*
|
|
380
|
+
* @param tsConfig The TypeScript configuration object.
|
|
381
|
+
* @param workspaceRoot The workspace root path.
|
|
382
|
+
* @param projectRoot The project root path.
|
|
383
|
+
* @returns `true` if the package has a valid build configuration; otherwise, `false`.
|
|
384
|
+
*/
|
|
385
|
+
function isValidPackageJsonBuildConfig(tsConfig, workspaceRoot, projectRoot) {
|
|
386
|
+
const packageJsonPath = (0, node_path_1.join)(workspaceRoot, projectRoot, 'package.json');
|
|
387
|
+
if (!(0, node_fs_1.existsSync)(packageJsonPath)) {
|
|
388
|
+
// If the package.json file does not exist.
|
|
389
|
+
// Assume it's valid because it would be using `project.json` instead.
|
|
390
|
+
return true;
|
|
391
|
+
}
|
|
392
|
+
const packageJson = (0, devkit_1.readJsonFile)(packageJsonPath);
|
|
393
|
+
const outDir = tsConfig.options.outFile
|
|
394
|
+
? (0, node_path_1.dirname)(tsConfig.options.outFile)
|
|
395
|
+
: tsConfig.options.outDir;
|
|
396
|
+
const resolvedOutDir = outDir
|
|
397
|
+
? (0, node_path_1.resolve)(workspaceRoot, projectRoot, outDir)
|
|
398
|
+
: undefined;
|
|
399
|
+
const isPathSourceFile = (path) => {
|
|
400
|
+
if (resolvedOutDir) {
|
|
401
|
+
const pathToCheck = (0, node_path_1.resolve)(workspaceRoot, projectRoot, path);
|
|
402
|
+
return !pathToCheck.startsWith(resolvedOutDir);
|
|
403
|
+
}
|
|
404
|
+
const ext = (0, node_path_1.extname)(path);
|
|
405
|
+
// Check that the file extension is a TS file extension. As the source files are in the same directory as the output files.
|
|
406
|
+
return ['.ts', '.tsx', '.cts', '.mts'].includes(ext);
|
|
407
|
+
};
|
|
408
|
+
// Checks if the value is a path within the `src` directory.
|
|
409
|
+
const containsInvalidPath = (value) => {
|
|
410
|
+
if (typeof value === 'string') {
|
|
411
|
+
return isPathSourceFile(value);
|
|
412
|
+
}
|
|
413
|
+
else if (typeof value === 'object') {
|
|
414
|
+
return Object.entries(value).some(([currentKey, subValue]) => {
|
|
415
|
+
// Skip types field
|
|
416
|
+
if (currentKey === 'types') {
|
|
417
|
+
return false;
|
|
418
|
+
}
|
|
419
|
+
if (typeof subValue === 'string') {
|
|
420
|
+
return isPathSourceFile(subValue);
|
|
421
|
+
}
|
|
422
|
+
return false;
|
|
423
|
+
});
|
|
424
|
+
}
|
|
425
|
+
return false;
|
|
426
|
+
};
|
|
427
|
+
const exports = packageJson?.exports;
|
|
428
|
+
// Check the `.` export if `exports` is defined.
|
|
429
|
+
if (exports) {
|
|
430
|
+
if (typeof exports === 'string') {
|
|
431
|
+
return !isPathSourceFile(exports);
|
|
432
|
+
}
|
|
433
|
+
if (typeof exports === 'object' && '.' in exports) {
|
|
434
|
+
return !containsInvalidPath(exports['.']);
|
|
435
|
+
}
|
|
436
|
+
// Check other exports if `.` is not defined or valid.
|
|
437
|
+
for (const key in exports) {
|
|
438
|
+
if (key !== '.' && containsInvalidPath(exports[key])) {
|
|
439
|
+
return false;
|
|
440
|
+
}
|
|
441
|
+
}
|
|
442
|
+
return true;
|
|
443
|
+
}
|
|
444
|
+
// If `exports` is not defined, fallback to `main` and `module` fields.
|
|
445
|
+
const buildPaths = ['main', 'module'];
|
|
446
|
+
for (const field of buildPaths) {
|
|
447
|
+
if (packageJson[field] && isPathSourceFile(packageJson[field])) {
|
|
448
|
+
return false;
|
|
449
|
+
}
|
|
450
|
+
}
|
|
451
|
+
return true;
|
|
452
|
+
}
|
|
374
453
|
function pathToInputOrOutput(path, workspaceRoot, projectRoot) {
|
|
375
454
|
const fullProjectRoot = (0, node_path_1.resolve)(workspaceRoot, projectRoot);
|
|
376
455
|
const fullPath = (0, node_path_1.resolve)(workspaceRoot, path);
|
|
@@ -475,7 +554,7 @@ function hasExternalProjectReferences(tsConfigPath, tsConfig, workspaceRoot, pro
|
|
|
475
554
|
return false;
|
|
476
555
|
}
|
|
477
556
|
function isExternalProjectReference(refTsConfigPath, workspaceRoot, projectRoot) {
|
|
478
|
-
const relativePath =
|
|
557
|
+
const relativePath = posix.relative(workspaceRoot, refTsConfigPath);
|
|
479
558
|
if (cache.isExternalProjectReference[relativePath] !== undefined) {
|
|
480
559
|
return cache.isExternalProjectReference[relativePath];
|
|
481
560
|
}
|
|
@@ -505,7 +584,7 @@ function getTsConfigDirName(tsConfigPath) {
|
|
|
505
584
|
: (0, node_path_1.normalize)(tsConfigPath);
|
|
506
585
|
}
|
|
507
586
|
function retrieveTsConfigFromCache(tsConfigPath, workspaceRoot) {
|
|
508
|
-
const relativePath =
|
|
587
|
+
const relativePath = posix.relative(workspaceRoot, tsConfigPath);
|
|
509
588
|
// we don't need to check the hash if it's in the cache, because we've already
|
|
510
589
|
// checked it when we initially populated the cache
|
|
511
590
|
return tsConfigCache[relativePath]
|
|
@@ -521,7 +600,7 @@ function initializeTsConfigCache(configFilePaths, workspaceRoot) {
|
|
|
521
600
|
}
|
|
522
601
|
}
|
|
523
602
|
function readTsConfigAndCache(tsConfigPath, workspaceRoot) {
|
|
524
|
-
const relativePath =
|
|
603
|
+
const relativePath = posix.relative(workspaceRoot, tsConfigPath);
|
|
525
604
|
const hash = getFileHash(tsConfigPath, workspaceRoot);
|
|
526
605
|
let extendedFilesHash;
|
|
527
606
|
if (tsConfigCache[relativePath] &&
|
|
@@ -637,7 +716,7 @@ function resolveExtendedTsConfigPath(tsConfigPath, directory) {
|
|
|
637
716
|
}
|
|
638
717
|
}
|
|
639
718
|
function getFileHash(filePath, workspaceRoot) {
|
|
640
|
-
const relativePath =
|
|
719
|
+
const relativePath = posix.relative(workspaceRoot, filePath);
|
|
641
720
|
if (!cache.fileHashes[relativePath]) {
|
|
642
721
|
const content = readFile(filePath, workspaceRoot);
|
|
643
722
|
cache.fileHashes[relativePath] = (0, file_hasher_1.hashArray)([content]);
|
|
@@ -645,7 +724,7 @@ function getFileHash(filePath, workspaceRoot) {
|
|
|
645
724
|
return cache.fileHashes[relativePath];
|
|
646
725
|
}
|
|
647
726
|
function readFile(filePath, workspaceRoot) {
|
|
648
|
-
const relativePath =
|
|
727
|
+
const relativePath = posix.relative(workspaceRoot, filePath);
|
|
649
728
|
if (!cache.rawFiles[relativePath]) {
|
|
650
729
|
const content = (0, node_fs_1.readFileSync)(filePath, 'utf8');
|
|
651
730
|
cache.rawFiles[relativePath] = content;
|
|
@@ -658,9 +737,6 @@ function toAbsolutePaths(cache, workspaceRoot) {
|
|
|
658
737
|
updatedCache[key] = {
|
|
659
738
|
data: {
|
|
660
739
|
options: { noEmit: data.options.noEmit },
|
|
661
|
-
raw: {
|
|
662
|
-
nx: { addTypecheckTarget: data.raw?.['nx']?.addTypecheckTarget },
|
|
663
|
-
},
|
|
664
740
|
extendedConfigFile: data.extendedConfigFile,
|
|
665
741
|
},
|
|
666
742
|
extendedFilesHash,
|
|
@@ -693,38 +769,29 @@ function toRelativePaths(cache, workspaceRoot) {
|
|
|
693
769
|
updatedCache[key] = {
|
|
694
770
|
data: {
|
|
695
771
|
options: { noEmit: data.options.noEmit },
|
|
696
|
-
raw: {
|
|
697
|
-
nx: { addTypecheckTarget: data.raw?.['nx']?.addTypecheckTarget },
|
|
698
|
-
},
|
|
699
772
|
extendedConfigFile: data.extendedConfigFile,
|
|
700
773
|
},
|
|
701
774
|
extendedFilesHash,
|
|
702
775
|
hash,
|
|
703
776
|
};
|
|
704
777
|
if (data.options.rootDir) {
|
|
705
|
-
updatedCache[key].data.options.rootDir =
|
|
778
|
+
updatedCache[key].data.options.rootDir = posix.relative(workspaceRoot, data.options.rootDir);
|
|
706
779
|
}
|
|
707
780
|
if (data.options.outDir) {
|
|
708
|
-
updatedCache[key].data.options.outDir =
|
|
781
|
+
updatedCache[key].data.options.outDir = posix.relative(workspaceRoot, data.options.outDir);
|
|
709
782
|
}
|
|
710
783
|
if (data.options.outFile) {
|
|
711
|
-
updatedCache[key].data.options.outFile =
|
|
784
|
+
updatedCache[key].data.options.outFile = posix.relative(workspaceRoot, data.options.outFile);
|
|
712
785
|
}
|
|
713
786
|
if (data.options.tsBuildInfoFile) {
|
|
714
|
-
updatedCache[key].data.options.tsBuildInfoFile =
|
|
787
|
+
updatedCache[key].data.options.tsBuildInfoFile = posix.relative(workspaceRoot, data.options.tsBuildInfoFile);
|
|
715
788
|
}
|
|
716
789
|
if (data.extendedConfigFile?.filePath) {
|
|
717
|
-
updatedCache[key].data.extendedConfigFile.filePath =
|
|
790
|
+
updatedCache[key].data.extendedConfigFile.filePath = posix.relative(workspaceRoot, data.extendedConfigFile.filePath);
|
|
718
791
|
}
|
|
719
792
|
if (data.projectReferences) {
|
|
720
|
-
updatedCache[key].data.projectReferences = data.projectReferences.map((ref) => ({
|
|
721
|
-
...ref,
|
|
722
|
-
path: posixRelative(workspaceRoot, ref.path),
|
|
723
|
-
}));
|
|
793
|
+
updatedCache[key].data.projectReferences = data.projectReferences.map((ref) => ({ ...ref, path: posix.relative(workspaceRoot, ref.path) }));
|
|
724
794
|
}
|
|
725
795
|
}
|
|
726
796
|
return updatedCache;
|
|
727
797
|
}
|
|
728
|
-
function posixRelative(workspaceRoot, path) {
|
|
729
|
-
return posix.normalize((0, node_path_1.relative)(workspaceRoot, path));
|
|
730
|
-
}
|
|
@@ -1,12 +1,5 @@
|
|
|
1
1
|
import { type TargetConfiguration } from '@nx/devkit';
|
|
2
2
|
import { type PackageManagerCommands } from 'nx/src/utils/package-manager';
|
|
3
|
-
import { type ParsedCommandLine } from 'typescript';
|
|
4
|
-
export type ParsedTsconfigData = Pick<ParsedCommandLine, 'options' | 'projectReferences' | 'raw'> & {
|
|
5
|
-
extendedConfigFile: {
|
|
6
|
-
filePath: string;
|
|
7
|
-
externalPackage?: string;
|
|
8
|
-
} | null;
|
|
9
|
-
};
|
|
10
3
|
/**
|
|
11
4
|
* Allow uses that use incremental builds to run `nx watch-deps` to continuously build all dependencies.
|
|
12
5
|
*/
|
|
@@ -14,4 +7,3 @@ export declare function addBuildAndWatchDepsTargets(workspaceRoot: string, proje
|
|
|
14
7
|
buildDepsTargetName?: string;
|
|
15
8
|
watchDepsTargetName?: string;
|
|
16
9
|
}, pmc: PackageManagerCommands): void;
|
|
17
|
-
export declare function isValidPackageJsonBuildConfig(tsConfig: ParsedTsconfigData, workspaceRoot: string, projectRoot: string): boolean;
|
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.addBuildAndWatchDepsTargets = addBuildAndWatchDepsTargets;
|
|
4
|
-
exports.isValidPackageJsonBuildConfig = isValidPackageJsonBuildConfig;
|
|
5
4
|
const devkit_1 = require("@nx/devkit");
|
|
6
5
|
const node_fs_1 = require("node:fs");
|
|
7
|
-
const node_path_1 = require("node:path");
|
|
8
6
|
const path_1 = require("path");
|
|
9
7
|
/**
|
|
10
8
|
* Allow uses that use incremental builds to run `nx watch-deps` to continuously build all dependencies.
|
|
@@ -29,79 +27,9 @@ function addBuildAndWatchDepsTargets(workspaceRoot, projectRoot, targets, option
|
|
|
29
27
|
dependsOn: ['^build'],
|
|
30
28
|
};
|
|
31
29
|
targets[options.watchDepsTargetName ?? 'watch-deps'] = {
|
|
30
|
+
continuous: true,
|
|
32
31
|
dependsOn: [buildDepsTargetName],
|
|
33
32
|
command: `${pmc.exec} nx watch --projects ${projectName} --includeDependentProjects -- ${pmc.exec} nx ${buildDepsTargetName} ${projectName}`,
|
|
34
33
|
};
|
|
35
34
|
}
|
|
36
35
|
}
|
|
37
|
-
function isValidPackageJsonBuildConfig(tsConfig, workspaceRoot, projectRoot) {
|
|
38
|
-
const resolvedProjectPath = (0, node_path_1.isAbsolute)(projectRoot)
|
|
39
|
-
? (0, node_path_1.relative)(workspaceRoot, projectRoot)
|
|
40
|
-
: projectRoot;
|
|
41
|
-
const packageJsonPath = (0, path_1.join)(workspaceRoot, resolvedProjectPath, 'package.json');
|
|
42
|
-
if (!(0, node_fs_1.existsSync)(packageJsonPath)) {
|
|
43
|
-
// If the package.json file does not exist.
|
|
44
|
-
// Assume it's valid because it would be using `project.json` instead.
|
|
45
|
-
return true;
|
|
46
|
-
}
|
|
47
|
-
const packageJson = (0, devkit_1.readJsonFile)(packageJsonPath);
|
|
48
|
-
const outDir = tsConfig.options.outFile
|
|
49
|
-
? (0, node_path_1.dirname)(tsConfig.options.outFile)
|
|
50
|
-
: tsConfig.options.outDir;
|
|
51
|
-
const resolvedOutDir = outDir
|
|
52
|
-
? (0, node_path_1.resolve)(workspaceRoot, resolvedProjectPath, outDir)
|
|
53
|
-
: undefined;
|
|
54
|
-
const isPathSourceFile = (path) => {
|
|
55
|
-
if (resolvedOutDir) {
|
|
56
|
-
const pathToCheck = (0, node_path_1.resolve)(workspaceRoot, resolvedProjectPath, path);
|
|
57
|
-
return !pathToCheck.startsWith(resolvedOutDir);
|
|
58
|
-
}
|
|
59
|
-
const ext = (0, node_path_1.extname)(path);
|
|
60
|
-
// Check that the file extension is a TS file extension. As the source files are in the same directory as the output files.
|
|
61
|
-
return ['.ts', '.tsx', '.cts', '.mts'].includes(ext);
|
|
62
|
-
};
|
|
63
|
-
// Checks if the value is a path within the `src` directory.
|
|
64
|
-
const containsInvalidPath = (value) => {
|
|
65
|
-
if (typeof value === 'string') {
|
|
66
|
-
return isPathSourceFile(value);
|
|
67
|
-
}
|
|
68
|
-
else if (typeof value === 'object') {
|
|
69
|
-
return Object.entries(value).some(([currentKey, subValue]) => {
|
|
70
|
-
// Skip types field
|
|
71
|
-
if (currentKey === 'types') {
|
|
72
|
-
return false;
|
|
73
|
-
}
|
|
74
|
-
if (typeof subValue === 'string') {
|
|
75
|
-
return isPathSourceFile(subValue);
|
|
76
|
-
}
|
|
77
|
-
return false;
|
|
78
|
-
});
|
|
79
|
-
}
|
|
80
|
-
return false;
|
|
81
|
-
};
|
|
82
|
-
const exports = packageJson?.exports;
|
|
83
|
-
// Check the `.` export if `exports` is defined.
|
|
84
|
-
if (exports) {
|
|
85
|
-
if (typeof exports === 'string') {
|
|
86
|
-
return !isPathSourceFile(exports);
|
|
87
|
-
}
|
|
88
|
-
if (typeof exports === 'object' && '.' in exports) {
|
|
89
|
-
return !containsInvalidPath(exports['.']);
|
|
90
|
-
}
|
|
91
|
-
// Check other exports if `.` is not defined or valid.
|
|
92
|
-
for (const key in exports) {
|
|
93
|
-
if (key !== '.' && containsInvalidPath(exports[key])) {
|
|
94
|
-
return false;
|
|
95
|
-
}
|
|
96
|
-
}
|
|
97
|
-
return true;
|
|
98
|
-
}
|
|
99
|
-
// If `exports` is not defined, fallback to `main` and `module` fields.
|
|
100
|
-
const buildPaths = ['main', 'module'];
|
|
101
|
-
for (const field of buildPaths) {
|
|
102
|
-
if (packageJson[field] && isPathSourceFile(packageJson[field])) {
|
|
103
|
-
return false;
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
return true;
|
|
107
|
-
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.CopyAssetsHandler = exports.defaultFileEventHandler = void 0;
|
|
4
|
-
const
|
|
4
|
+
const minimatch_1 = require("minimatch");
|
|
5
5
|
const node_fs_1 = require("node:fs");
|
|
6
6
|
const pathPosix = require("node:path/posix");
|
|
7
7
|
const path = require("node:path");
|
|
@@ -9,7 +9,6 @@ const ignore_1 = require("ignore");
|
|
|
9
9
|
const tinyglobby_1 = require("tinyglobby");
|
|
10
10
|
const devkit_1 = require("@nx/devkit");
|
|
11
11
|
const client_1 = require("nx/src/daemon/client/client");
|
|
12
|
-
const picocolors_1 = require("picocolors");
|
|
13
12
|
const defaultFileEventHandler = (events) => {
|
|
14
13
|
const dirs = new Set(events.map((event) => path.dirname(event.dest)));
|
|
15
14
|
dirs.forEach((d) => (0, node_fs_1.mkdirSync)(d, { recursive: true }));
|
|
@@ -25,9 +24,6 @@ const defaultFileEventHandler = (events) => {
|
|
|
25
24
|
else {
|
|
26
25
|
devkit_1.logger.error(`Unknown file event: ${event.type}`);
|
|
27
26
|
}
|
|
28
|
-
const eventDir = path.dirname(event.src);
|
|
29
|
-
const relativeDest = path.relative(eventDir, event.dest);
|
|
30
|
-
devkit_1.logger.log(`\n${(0, picocolors_1.dim)(relativeDest)}`);
|
|
31
27
|
});
|
|
32
28
|
};
|
|
33
29
|
exports.defaultFileEventHandler = defaultFileEventHandler;
|
|
@@ -119,12 +115,10 @@ class CopyAssetsHandler {
|
|
|
119
115
|
async processWatchEvents(events) {
|
|
120
116
|
const fileEvents = [];
|
|
121
117
|
for (const event of events) {
|
|
122
|
-
const pathFromRoot =
|
|
123
|
-
? path.relative(this.rootDir, event.path)
|
|
124
|
-
: event.path;
|
|
118
|
+
const pathFromRoot = path.relative(this.rootDir, event.path);
|
|
125
119
|
for (const ag of this.assetGlobs) {
|
|
126
|
-
if (
|
|
127
|
-
!ag.ignore?.some((ig) =>
|
|
120
|
+
if ((0, minimatch_1.minimatch)(pathFromRoot, ag.pattern) &&
|
|
121
|
+
!ag.ignore?.some((ig) => (0, minimatch_1.minimatch)(pathFromRoot, ig)) &&
|
|
128
122
|
!this.ignore.ignores(pathFromRoot)) {
|
|
129
123
|
const relPath = path.relative(ag.input, pathFromRoot);
|
|
130
124
|
const destPath = relPath.startsWith('..') ? pathFromRoot : relPath;
|
|
@@ -143,7 +137,7 @@ class CopyAssetsHandler {
|
|
|
143
137
|
}
|
|
144
138
|
filesToEvent(files, assetGlob) {
|
|
145
139
|
return files.reduce((acc, src) => {
|
|
146
|
-
if (!assetGlob.ignore?.some((ig) =>
|
|
140
|
+
if (!assetGlob.ignore?.some((ig) => (0, minimatch_1.minimatch)(src, ig)) &&
|
|
147
141
|
!this.ignore.ignores(src)) {
|
|
148
142
|
const relPath = path.relative(assetGlob.input, src);
|
|
149
143
|
const dest = relPath.startsWith('..') ? src : relPath;
|
|
@@ -16,8 +16,6 @@ const fileutils_1 = require("nx/src/utils/fileutils");
|
|
|
16
16
|
const output_1 = require("nx/src/utils/output");
|
|
17
17
|
const path_1 = require("path");
|
|
18
18
|
const ts_config_1 = require("./typescript/ts-config");
|
|
19
|
-
const crypto_1 = require("crypto");
|
|
20
|
-
const project_graph_1 = require("nx/src/config/project-graph");
|
|
21
19
|
function isBuildable(target, node) {
|
|
22
20
|
return (node.data.targets &&
|
|
23
21
|
node.data.targets[target] &&
|
|
@@ -50,7 +48,7 @@ function calculateProjectDependencies(projGraph, root, projectName, targetName,
|
|
|
50
48
|
.map(({ name: dep, isTopLevel }) => {
|
|
51
49
|
let project = null;
|
|
52
50
|
const depNode = projGraph.nodes[dep] || projGraph.externalNodes[dep];
|
|
53
|
-
if (
|
|
51
|
+
if (depNode.type === 'lib') {
|
|
54
52
|
if (isBuildable(targetName, depNode)) {
|
|
55
53
|
const libPackageJsonPath = (0, path_1.join)(root, depNode.data.root, 'package.json');
|
|
56
54
|
project = {
|
|
@@ -69,7 +67,7 @@ function calculateProjectDependencies(projGraph, root, projectName, targetName,
|
|
|
69
67
|
nonBuildableDependencies.push(dep);
|
|
70
68
|
}
|
|
71
69
|
}
|
|
72
|
-
else if (
|
|
70
|
+
else if (depNode.type === 'npm') {
|
|
73
71
|
project = {
|
|
74
72
|
name: depNode.data.packageName,
|
|
75
73
|
outputs: [],
|
|
@@ -231,7 +229,7 @@ function computeCompilerOptionsPaths(tsConfig, dependencies) {
|
|
|
231
229
|
return paths;
|
|
232
230
|
}
|
|
233
231
|
function createTmpTsConfig(tsconfigPath, workspaceRoot, projectRoot, dependencies, useWorkspaceAsBaseUrl = false) {
|
|
234
|
-
const tmpTsConfigPath = (0, path_1.join)(workspaceRoot, 'tmp', projectRoot, process.env.NX_TASK_TARGET_TARGET ?? 'build',
|
|
232
|
+
const tmpTsConfigPath = (0, path_1.join)(workspaceRoot, 'tmp', projectRoot, process.env.NX_TASK_TARGET_TARGET ?? 'build', 'tsconfig.generated.json');
|
|
235
233
|
if (tsconfigPath === tmpTsConfigPath) {
|
|
236
234
|
return tsconfigPath;
|
|
237
235
|
}
|
|
@@ -285,9 +283,10 @@ function findMissingBuildDependencies(root, projectName, targetName, projectDepe
|
|
|
285
283
|
function updatePaths(dependencies, paths) {
|
|
286
284
|
const pathsKeys = Object.keys(paths);
|
|
287
285
|
// For each registered dependency
|
|
288
|
-
dependencies
|
|
289
|
-
|
|
290
|
-
|
|
286
|
+
dependencies.forEach((dep) => {
|
|
287
|
+
if (dep.node.type === 'npm') {
|
|
288
|
+
return;
|
|
289
|
+
}
|
|
291
290
|
// If there are outputs
|
|
292
291
|
if (dep.outputs && dep.outputs.length > 0) {
|
|
293
292
|
// Directly map the dependency name to the output paths (dist/packages/..., etc.)
|
|
@@ -351,8 +350,7 @@ function updateBuildableProjectPackageJsonDependencies(root, projectName, target
|
|
|
351
350
|
!hasDependency(packageJson, 'peerDependencies', packageName)) {
|
|
352
351
|
try {
|
|
353
352
|
let depVersion;
|
|
354
|
-
if (
|
|
355
|
-
entry.node.type === 'lib') {
|
|
353
|
+
if (entry.node.type === 'lib') {
|
|
356
354
|
const outputs = (0, devkit_1.getOutputsForTargetAndConfiguration)({
|
|
357
355
|
project: projectName,
|
|
358
356
|
target: targetName,
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { type GeneratorCallback, type Tree } from '@nx/devkit';
|
|
2
2
|
export type ProjectPackageManagerWorkspaceState = 'included' | 'excluded' | 'no-workspaces';
|
|
3
3
|
export declare function getProjectPackageManagerWorkspaceState(tree: Tree, projectRoot: string): ProjectPackageManagerWorkspaceState;
|
|
4
|
-
export declare function getPackageManagerWorkspacesPatterns(tree: Tree): string[];
|
|
5
4
|
export declare function isUsingPackageManagerWorkspaces(tree: Tree): boolean;
|
|
6
5
|
export declare function isWorkspacesEnabled(tree: Tree): boolean;
|
|
7
6
|
export declare function getProjectPackageManagerWorkspaceStateWarningTask(projectPackageManagerWorkspaceState: ProjectPackageManagerWorkspaceState, workspaceRoot: string): GeneratorCallback;
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getProjectPackageManagerWorkspaceState = getProjectPackageManagerWorkspaceState;
|
|
4
|
-
exports.getPackageManagerWorkspacesPatterns = getPackageManagerWorkspacesPatterns;
|
|
5
4
|
exports.isUsingPackageManagerWorkspaces = isUsingPackageManagerWorkspaces;
|
|
6
5
|
exports.isWorkspacesEnabled = isWorkspacesEnabled;
|
|
7
6
|
exports.getProjectPackageManagerWorkspaceStateWarningTask = getProjectPackageManagerWorkspaceStateWarningTask;
|
|
8
7
|
const devkit_1 = require("@nx/devkit");
|
|
9
|
-
const
|
|
8
|
+
const minimatch_1 = require("minimatch");
|
|
10
9
|
const posix_1 = require("node:path/posix");
|
|
11
10
|
const package_json_1 = require("nx/src/plugins/package-json");
|
|
12
11
|
const semver_1 = require("semver");
|
|
@@ -14,21 +13,17 @@ function getProjectPackageManagerWorkspaceState(tree, projectRoot) {
|
|
|
14
13
|
if (!isUsingPackageManagerWorkspaces(tree)) {
|
|
15
14
|
return 'no-workspaces';
|
|
16
15
|
}
|
|
17
|
-
const patterns =
|
|
18
|
-
const isIncluded = patterns.some((p) =>
|
|
16
|
+
const patterns = (0, package_json_1.getGlobPatternsFromPackageManagerWorkspaces)(tree.root, (path) => (0, devkit_1.readJson)(tree, path, { expectComments: true }));
|
|
17
|
+
const isIncluded = patterns.some((p) => (0, minimatch_1.minimatch)((0, posix_1.join)(projectRoot, 'package.json'), p));
|
|
19
18
|
return isIncluded ? 'included' : 'excluded';
|
|
20
19
|
}
|
|
21
|
-
function getPackageManagerWorkspacesPatterns(tree) {
|
|
22
|
-
return (0, package_json_1.getGlobPatternsFromPackageManagerWorkspaces)(tree.root, (path) => (0, devkit_1.readJson)(tree, path, { expectComments: true }), (path) => {
|
|
23
|
-
const content = tree.read(path, 'utf-8');
|
|
24
|
-
const { load } = require('@zkochan/js-yaml');
|
|
25
|
-
return load(content, { filename: path });
|
|
26
|
-
}, (path) => tree.exists(path));
|
|
27
|
-
}
|
|
28
20
|
function isUsingPackageManagerWorkspaces(tree) {
|
|
29
21
|
return isWorkspacesEnabled(tree);
|
|
30
22
|
}
|
|
31
|
-
function isWorkspacesEnabled(tree
|
|
23
|
+
function isWorkspacesEnabled(tree
|
|
24
|
+
// packageManager: PackageManager = detectPackageManager(),
|
|
25
|
+
// root: string = workspaceRoot
|
|
26
|
+
) {
|
|
32
27
|
const packageManager = (0, devkit_1.detectPackageManager)(tree.root);
|
|
33
28
|
if (packageManager === 'pnpm') {
|
|
34
29
|
return tree.exists('pnpm-workspace.yaml');
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import type { NxJsonConfiguration } from '@nx/devkit';
|
|
2
|
-
export declare function ensureProjectIsIncludedInPluginRegistrations(nxJson: NxJsonConfiguration, projectRoot: string, buildTargetName
|
|
2
|
+
export declare function ensureProjectIsIncludedInPluginRegistrations(nxJson: NxJsonConfiguration, projectRoot: string, buildTargetName?: string): void;
|
|
3
3
|
export declare function ensureProjectIsExcludedFromPluginRegistrations(nxJson: NxJsonConfiguration, projectRoot: string): void;
|
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.ensureProjectIsIncludedInPluginRegistrations = ensureProjectIsIncludedInPluginRegistrations;
|
|
4
4
|
exports.ensureProjectIsExcludedFromPluginRegistrations = ensureProjectIsExcludedFromPluginRegistrations;
|
|
5
5
|
const devkit_internals_1 = require("nx/src/devkit-internals");
|
|
6
|
-
function ensureProjectIsIncludedInPluginRegistrations(nxJson, projectRoot, buildTargetName) {
|
|
6
|
+
function ensureProjectIsIncludedInPluginRegistrations(nxJson, projectRoot, buildTargetName = 'build') {
|
|
7
7
|
nxJson.plugins ??= [];
|
|
8
8
|
let isIncluded = false;
|
|
9
9
|
let index = 0;
|
|
@@ -13,17 +13,12 @@ function ensureProjectIsIncludedInPluginRegistrations(nxJson, projectRoot, build
|
|
|
13
13
|
continue;
|
|
14
14
|
}
|
|
15
15
|
if (typeof registration === 'string') {
|
|
16
|
-
if
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
};
|
|
23
|
-
}
|
|
24
|
-
else {
|
|
25
|
-
isIncluded = true;
|
|
26
|
-
}
|
|
16
|
+
// if it's a string all projects are included but the are no user-specified options
|
|
17
|
+
// and the build task is not inferred by default, so we need to exclude it
|
|
18
|
+
nxJson.plugins[index] = {
|
|
19
|
+
plugin: '@nx/js/typescript',
|
|
20
|
+
exclude: [`${projectRoot}/*`],
|
|
21
|
+
};
|
|
27
22
|
}
|
|
28
23
|
else {
|
|
29
24
|
// check if the project would be included by the plugin registration
|
|
@@ -32,7 +27,7 @@ function ensureProjectIsIncludedInPluginRegistrations(nxJson, projectRoot, build
|
|
|
32
27
|
// it's included by the plugin registration, check if the user-specified options would result
|
|
33
28
|
// in the appropriate build task being inferred, if not, we need to exclude it
|
|
34
29
|
if (registration.options?.typecheck !== false &&
|
|
35
|
-
|
|
30
|
+
matchesBuildTarget(registration.options?.build, buildTargetName)) {
|
|
36
31
|
// it has the desired options, do nothing, but continue processing
|
|
37
32
|
// other registrations to exclude as needed
|
|
38
33
|
isIncluded = true;
|
|
@@ -45,7 +40,7 @@ function ensureProjectIsIncludedInPluginRegistrations(nxJson, projectRoot, build
|
|
|
45
40
|
}
|
|
46
41
|
else if (!isIncluded &&
|
|
47
42
|
registration.options?.typecheck !== false &&
|
|
48
|
-
|
|
43
|
+
matchesBuildTarget(registration.options?.build, buildTargetName)) {
|
|
49
44
|
if (!registration.exclude?.length) {
|
|
50
45
|
// negative pattern are not supported by the `exclude` option so we
|
|
51
46
|
// can't update it to not exclude the project, so we only update the
|
|
@@ -71,20 +66,17 @@ function ensureProjectIsIncludedInPluginRegistrations(nxJson, projectRoot, build
|
|
|
71
66
|
if (!isIncluded) {
|
|
72
67
|
// the project is not included by any plugin registration with an inferred build task
|
|
73
68
|
// with the given name, so we create a new plugin registration for it
|
|
74
|
-
|
|
69
|
+
nxJson.plugins.push({
|
|
75
70
|
plugin: '@nx/js/typescript',
|
|
76
71
|
include: [`${projectRoot}/*`],
|
|
77
72
|
options: {
|
|
78
73
|
typecheck: { targetName: 'typecheck' },
|
|
74
|
+
build: {
|
|
75
|
+
targetName: buildTargetName,
|
|
76
|
+
configName: 'tsconfig.lib.json',
|
|
77
|
+
},
|
|
79
78
|
},
|
|
80
|
-
};
|
|
81
|
-
if (buildTargetName) {
|
|
82
|
-
registration.options.build = {
|
|
83
|
-
targetName: buildTargetName,
|
|
84
|
-
configName: 'tsconfig.lib.json',
|
|
85
|
-
};
|
|
86
|
-
}
|
|
87
|
-
nxJson.plugins.push(registration);
|
|
79
|
+
});
|
|
88
80
|
}
|
|
89
81
|
}
|
|
90
82
|
function ensureProjectIsExcludedFromPluginRegistrations(nxJson, projectRoot) {
|
|
@@ -123,11 +115,8 @@ function isTypeScriptPluginRegistration(plugin) {
|
|
|
123
115
|
return ((typeof plugin === 'string' && plugin === '@nx/js/typescript') ||
|
|
124
116
|
(typeof plugin !== 'string' && plugin.plugin === '@nx/js/typescript'));
|
|
125
117
|
}
|
|
126
|
-
function
|
|
118
|
+
function matchesBuildTarget(buildOptions, buildTargetName) {
|
|
127
119
|
if (buildOptions === undefined || buildOptions === false) {
|
|
128
|
-
return !buildTargetName;
|
|
129
|
-
}
|
|
130
|
-
if (!buildTargetName) {
|
|
131
120
|
return false;
|
|
132
121
|
}
|
|
133
122
|
if (buildOptions === true && buildTargetName === 'build') {
|
|
@@ -2,8 +2,7 @@ import { type Tree } from '@nx/devkit';
|
|
|
2
2
|
export declare function isUsingTypeScriptPlugin(tree: Tree): boolean;
|
|
3
3
|
export declare function isUsingTsSolutionSetup(tree?: Tree): boolean;
|
|
4
4
|
export declare function assertNotUsingTsSolutionSetup(tree: Tree, pluginName: string, generatorName: string): void;
|
|
5
|
-
export declare function findRuntimeTsConfigName(
|
|
5
|
+
export declare function findRuntimeTsConfigName(tree: Tree, projectRoot: string): string | null;
|
|
6
6
|
export declare function updateTsconfigFiles(tree: Tree, projectRoot: string, runtimeTsconfigFileName: string, compilerOptions: Record<string, string | boolean | string[]>, exclude?: string[], rootDir?: string): void;
|
|
7
|
-
export declare function addProjectToTsSolutionWorkspace(tree: Tree, projectDir: string):
|
|
7
|
+
export declare function addProjectToTsSolutionWorkspace(tree: Tree, projectDir: string): void;
|
|
8
8
|
export declare function getProjectType(tree: Tree, projectRoot: string, projectType?: 'library' | 'application'): 'library' | 'application';
|
|
9
|
-
export declare function getProjectSourceRoot(tree: Tree, projectSourceRoot: string | undefined, projectRoot: string): string | undefined;
|
|
@@ -7,7 +7,6 @@ exports.findRuntimeTsConfigName = findRuntimeTsConfigName;
|
|
|
7
7
|
exports.updateTsconfigFiles = updateTsconfigFiles;
|
|
8
8
|
exports.addProjectToTsSolutionWorkspace = addProjectToTsSolutionWorkspace;
|
|
9
9
|
exports.getProjectType = getProjectType;
|
|
10
|
-
exports.getProjectSourceRoot = getProjectSourceRoot;
|
|
11
10
|
const devkit_1 = require("@nx/devkit");
|
|
12
11
|
const posix_1 = require("node:path/posix");
|
|
13
12
|
const tree_1 = require("nx/src/generators/tree");
|
|
@@ -72,8 +71,7 @@ function assertNotUsingTsSolutionSetup(tree, pluginName, generatorName) {
|
|
|
72
71
|
});
|
|
73
72
|
throw new Error(`The ${artifactString} doesn't yet support the existing TypeScript setup. See the error above.`);
|
|
74
73
|
}
|
|
75
|
-
function findRuntimeTsConfigName(
|
|
76
|
-
tree ??= new tree_1.FsTree(devkit_1.workspaceRoot, false);
|
|
74
|
+
function findRuntimeTsConfigName(tree, projectRoot) {
|
|
77
75
|
if (tree.exists((0, devkit_1.joinPathFragments)(projectRoot, 'tsconfig.app.json')))
|
|
78
76
|
return 'tsconfig.app.json';
|
|
79
77
|
if (tree.exists((0, devkit_1.joinPathFragments)(projectRoot, 'tsconfig.lib.json')))
|
|
@@ -92,7 +90,9 @@ function updateTsconfigFiles(tree, projectRoot, runtimeTsconfigFileName, compile
|
|
|
92
90
|
json.extends = (0, devkit_1.joinPathFragments)(offset, 'tsconfig.base.json');
|
|
93
91
|
json.compilerOptions = {
|
|
94
92
|
...json.compilerOptions,
|
|
95
|
-
|
|
93
|
+
// Make sure d.ts files from typecheck does not conflict with bundlers.
|
|
94
|
+
// Other tooling like jest write to "out-tsc/jest" to we just default to "out-tsc/<project-name>".
|
|
95
|
+
outDir: (0, devkit_1.joinPathFragments)('out-tsc', projectRoot.split('/').at(-1)),
|
|
96
96
|
rootDir,
|
|
97
97
|
...compilerOptions,
|
|
98
98
|
};
|
|
@@ -145,29 +145,12 @@ function updateTsconfigFiles(tree, projectRoot, runtimeTsconfigFileName, compile
|
|
|
145
145
|
});
|
|
146
146
|
}
|
|
147
147
|
}
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
}
|
|
153
|
-
// If dir is "libs/foo", we try to use "libs/*" but we only do it if it's
|
|
154
|
-
// safe to do so. So, we first check if adding that pattern doesn't result
|
|
155
|
-
// in extra projects being matched. If extra projects are matched, or the
|
|
156
|
-
// dir is just "foo" then we add it as is.
|
|
148
|
+
function addProjectToTsSolutionWorkspace(tree, projectDir) {
|
|
149
|
+
// If dir is "libs/foo" then use "libs/*" so we don't need so many entries in the workspace file.
|
|
150
|
+
// If dir is nested like "libs/shared/foo" then we add "libs/shared/*".
|
|
151
|
+
// If the dir is just "foo" then we have to add it as is.
|
|
157
152
|
const baseDir = (0, posix_1.dirname)(projectDir);
|
|
158
|
-
|
|
159
|
-
if (baseDir !== '.') {
|
|
160
|
-
const patterns = (0, package_manager_workspaces_1.getPackageManagerWorkspacesPatterns)(tree);
|
|
161
|
-
const projectsBefore = await (0, devkit_1.globAsync)(tree, patterns);
|
|
162
|
-
patterns.push(`${baseDir}/*/package.json`);
|
|
163
|
-
const projectsAfter = await (0, devkit_1.globAsync)(tree, patterns);
|
|
164
|
-
if (projectsBefore.length + 1 === projectsAfter.length) {
|
|
165
|
-
// Adding the pattern to the parent directory only results in one extra
|
|
166
|
-
// project being matched, which is the project we're adding. It's safe
|
|
167
|
-
// to add the pattern to the parent directory.
|
|
168
|
-
pattern = `${baseDir}/*`;
|
|
169
|
-
}
|
|
170
|
-
}
|
|
153
|
+
const pattern = baseDir === '.' ? projectDir : `${baseDir}/*`;
|
|
171
154
|
if (tree.exists('pnpm-workspace.yaml')) {
|
|
172
155
|
const { load, dump } = require('@zkochan/js-yaml');
|
|
173
156
|
const workspaceFile = tree.read('pnpm-workspace.yaml', 'utf-8');
|
|
@@ -206,9 +189,3 @@ function getProjectType(tree, projectRoot, projectType) {
|
|
|
206
189
|
return 'application';
|
|
207
190
|
return 'library';
|
|
208
191
|
}
|
|
209
|
-
function getProjectSourceRoot(tree, projectSourceRoot, projectRoot) {
|
|
210
|
-
return (projectSourceRoot ??
|
|
211
|
-
(tree.exists((0, devkit_1.joinPathFragments)(projectRoot, 'src'))
|
|
212
|
-
? (0, devkit_1.joinPathFragments)(projectRoot, 'src')
|
|
213
|
-
: projectRoot));
|
|
214
|
-
}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { ProjectGraph, Tree } from '@nx/devkit';
|
|
2
|
-
import { ManifestData, VersionActions } from 'nx/release';
|
|
3
|
-
import type { NxReleaseVersionV2Configuration } from 'nx/src/config/nx-json';
|
|
4
|
-
export default class JsVersionActions extends VersionActions {
|
|
5
|
-
manifestFilename: string;
|
|
6
|
-
static createAfterAllProjectsVersionedCallback(cwd: string, opts: {
|
|
7
|
-
dryRun?: boolean;
|
|
8
|
-
verbose?: boolean;
|
|
9
|
-
versionActionsOptions?: Record<string, unknown>;
|
|
10
|
-
}): () => Promise<{
|
|
11
|
-
changedFiles: string[];
|
|
12
|
-
deletedFiles: any[];
|
|
13
|
-
}>;
|
|
14
|
-
readSourceManifestData(tree: Tree): Promise<ManifestData>;
|
|
15
|
-
readCurrentVersionFromSourceManifest(tree: Tree): Promise<string>;
|
|
16
|
-
readCurrentVersionFromRegistry(tree: Tree, currentVersionResolverMetadata: NxReleaseVersionV2Configuration['currentVersionResolverMetadata']): Promise<{
|
|
17
|
-
currentVersion: string;
|
|
18
|
-
logText: string;
|
|
19
|
-
}>;
|
|
20
|
-
getCurrentVersionOfDependency(tree: Tree, projectGraph: ProjectGraph, dependencyProjectName: string): Promise<{
|
|
21
|
-
currentVersion: string | null;
|
|
22
|
-
dependencyCollection: string | null;
|
|
23
|
-
}>;
|
|
24
|
-
isLocalDependencyProtocol(versionSpecifier: string): boolean;
|
|
25
|
-
writeVersionToManifests(tree: Tree, newVersion: string): Promise<void>;
|
|
26
|
-
updateDependencies(tree: Tree, projectGraph: ProjectGraph, dependenciesToUpdate: Record<string, string>): Promise<void>;
|
|
27
|
-
private parseDependencies;
|
|
28
|
-
}
|
|
@@ -1,213 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const devkit_1 = require("@nx/devkit");
|
|
4
|
-
const node_child_process_1 = require("node:child_process");
|
|
5
|
-
const node_path_1 = require("node:path");
|
|
6
|
-
const release_1 = require("nx/release");
|
|
7
|
-
const npm_config_1 = require("../../utils/npm-config");
|
|
8
|
-
const resolve_version_spec_1 = require("./utils/resolve-version-spec");
|
|
9
|
-
const update_lock_file_1 = require("./utils/update-lock-file");
|
|
10
|
-
const chalk = require("chalk");
|
|
11
|
-
// Cache at the module level to avoid re-detecting the package manager for each instance
|
|
12
|
-
let pm;
|
|
13
|
-
class JsVersionActions extends release_1.VersionActions {
|
|
14
|
-
constructor() {
|
|
15
|
-
super(...arguments);
|
|
16
|
-
this.manifestFilename = 'package.json';
|
|
17
|
-
}
|
|
18
|
-
static createAfterAllProjectsVersionedCallback(cwd, opts) {
|
|
19
|
-
return async () => {
|
|
20
|
-
return {
|
|
21
|
-
changedFiles: await (0, update_lock_file_1.updateLockFile)(cwd, {
|
|
22
|
-
...opts,
|
|
23
|
-
useLegacyVersioning: false,
|
|
24
|
-
}),
|
|
25
|
-
deletedFiles: [],
|
|
26
|
-
};
|
|
27
|
-
};
|
|
28
|
-
}
|
|
29
|
-
async readSourceManifestData(tree) {
|
|
30
|
-
const sourcePackageJsonPath = this.getSourceManifestPath();
|
|
31
|
-
try {
|
|
32
|
-
const packageJson = (0, devkit_1.readJson)(tree, sourcePackageJsonPath);
|
|
33
|
-
const dependencies = this.parseDependencies(packageJson);
|
|
34
|
-
return {
|
|
35
|
-
name: packageJson.name,
|
|
36
|
-
currentVersion: packageJson.version,
|
|
37
|
-
dependencies,
|
|
38
|
-
};
|
|
39
|
-
}
|
|
40
|
-
catch {
|
|
41
|
-
throw new Error(`Unable to read the package.json file at ${sourcePackageJsonPath}, please ensure that the file exists and is valid`);
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
async readCurrentVersionFromSourceManifest(tree) {
|
|
45
|
-
const sourcePackageJsonPath = this.getSourceManifestPath();
|
|
46
|
-
try {
|
|
47
|
-
const packageJson = (0, devkit_1.readJson)(tree, sourcePackageJsonPath);
|
|
48
|
-
return packageJson.version;
|
|
49
|
-
}
|
|
50
|
-
catch {
|
|
51
|
-
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`);
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
async readCurrentVersionFromRegistry(tree, currentVersionResolverMetadata) {
|
|
55
|
-
const sourceManifestPath = this.getSourceManifestPath();
|
|
56
|
-
const sourceManifestRoot = (0, node_path_1.dirname)(sourceManifestPath);
|
|
57
|
-
const packageJson = (0, devkit_1.readJson)(tree, sourceManifestPath);
|
|
58
|
-
const packageName = packageJson.name;
|
|
59
|
-
const metadata = currentVersionResolverMetadata;
|
|
60
|
-
const registryArg = typeof metadata?.registry === 'string' ? metadata.registry : undefined;
|
|
61
|
-
const tagArg = typeof metadata?.tag === 'string' ? metadata.tag : undefined;
|
|
62
|
-
const warnFn = (message) => {
|
|
63
|
-
console.log(chalk.keyword('orange')(message));
|
|
64
|
-
};
|
|
65
|
-
const { registry, tag, registryConfigKey } = await (0, npm_config_1.parseRegistryOptions)(devkit_1.workspaceRoot, {
|
|
66
|
-
packageRoot: sourceManifestRoot,
|
|
67
|
-
packageJson,
|
|
68
|
-
}, {
|
|
69
|
-
registry: registryArg,
|
|
70
|
-
tag: tagArg,
|
|
71
|
-
}, warnFn);
|
|
72
|
-
let currentVersion = null;
|
|
73
|
-
try {
|
|
74
|
-
// Must be non-blocking async to allow spinner to render
|
|
75
|
-
currentVersion = await new Promise((resolve, reject) => {
|
|
76
|
-
(0, node_child_process_1.exec)(`npm view ${packageName} version --"${registryConfigKey}=${registry}" --tag=${tag}`, {
|
|
77
|
-
windowsHide: false,
|
|
78
|
-
}, (error, stdout, stderr) => {
|
|
79
|
-
if (error) {
|
|
80
|
-
return reject(error);
|
|
81
|
-
}
|
|
82
|
-
if (stderr) {
|
|
83
|
-
return reject(stderr);
|
|
84
|
-
}
|
|
85
|
-
return resolve(stdout.trim());
|
|
86
|
-
});
|
|
87
|
-
});
|
|
88
|
-
}
|
|
89
|
-
catch { }
|
|
90
|
-
return {
|
|
91
|
-
currentVersion,
|
|
92
|
-
// Make troubleshooting easier by including the registry and tag data in the log text
|
|
93
|
-
logText: `"${registryConfigKey}=${registry}" tag=${tag}`,
|
|
94
|
-
};
|
|
95
|
-
}
|
|
96
|
-
async getCurrentVersionOfDependency(tree, projectGraph, dependencyProjectName) {
|
|
97
|
-
const json = (0, devkit_1.readJson)(tree, this.getSourceManifestPath());
|
|
98
|
-
// Resolve the package name from the project graph metadata, as it may not match the project name
|
|
99
|
-
const dependencyPackageName = projectGraph.nodes[dependencyProjectName].data.metadata?.js?.packageName;
|
|
100
|
-
const dependencyTypes = [
|
|
101
|
-
'dependencies',
|
|
102
|
-
'devDependencies',
|
|
103
|
-
'peerDependencies',
|
|
104
|
-
'optionalDependencies',
|
|
105
|
-
];
|
|
106
|
-
let currentVersion = null;
|
|
107
|
-
let dependencyCollection = null;
|
|
108
|
-
for (const depType of dependencyTypes) {
|
|
109
|
-
if (json[depType] && json[depType][dependencyPackageName]) {
|
|
110
|
-
currentVersion = json[depType][dependencyPackageName];
|
|
111
|
-
dependencyCollection = depType;
|
|
112
|
-
break;
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
return {
|
|
116
|
-
currentVersion,
|
|
117
|
-
dependencyCollection,
|
|
118
|
-
};
|
|
119
|
-
}
|
|
120
|
-
// NOTE: The TODOs were carried over from the original implementation, they are not yet implemented
|
|
121
|
-
isLocalDependencyProtocol(versionSpecifier) {
|
|
122
|
-
const localPackageProtocols = [
|
|
123
|
-
'file:', // all package managers
|
|
124
|
-
'workspace:', // not npm
|
|
125
|
-
// TODO: Support portal protocol at the project graph level before enabling here
|
|
126
|
-
// 'portal:', // modern yarn only
|
|
127
|
-
];
|
|
128
|
-
// Not using a supported local protocol
|
|
129
|
-
if (!localPackageProtocols.some((protocol) => versionSpecifier.startsWith(protocol))) {
|
|
130
|
-
return false;
|
|
131
|
-
}
|
|
132
|
-
// Supported by all package managers
|
|
133
|
-
if (versionSpecifier.startsWith('file:')) {
|
|
134
|
-
return true;
|
|
135
|
-
}
|
|
136
|
-
// Determine specific package manager in use
|
|
137
|
-
if (!pm) {
|
|
138
|
-
pm = (0, devkit_1.detectPackageManager)();
|
|
139
|
-
// pmVersion = getPackageManagerVersion(pm);
|
|
140
|
-
}
|
|
141
|
-
if (pm === 'npm' && versionSpecifier.startsWith('workspace:')) {
|
|
142
|
-
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.`);
|
|
143
|
-
}
|
|
144
|
-
// TODO: Support portal protocol at the project graph level before enabling here
|
|
145
|
-
// if (
|
|
146
|
-
// version.startsWith('portal:') &&
|
|
147
|
-
// (pm !== 'yarn' || lt(pmVersion, '2.0.0'))
|
|
148
|
-
// ) {
|
|
149
|
-
// throw new Error(
|
|
150
|
-
// `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.`
|
|
151
|
-
// );
|
|
152
|
-
// }
|
|
153
|
-
return true;
|
|
154
|
-
}
|
|
155
|
-
async writeVersionToManifests(tree, newVersion) {
|
|
156
|
-
for (const manifestPath of this.manifestsToUpdate) {
|
|
157
|
-
(0, devkit_1.updateJson)(tree, manifestPath, (json) => {
|
|
158
|
-
json.version = newVersion;
|
|
159
|
-
return json;
|
|
160
|
-
});
|
|
161
|
-
}
|
|
162
|
-
}
|
|
163
|
-
async updateDependencies(tree, projectGraph, dependenciesToUpdate) {
|
|
164
|
-
for (const manifestPath of this.manifestsToUpdate) {
|
|
165
|
-
(0, devkit_1.updateJson)(tree, manifestPath, (json) => {
|
|
166
|
-
const dependencyTypes = [
|
|
167
|
-
'dependencies',
|
|
168
|
-
'devDependencies',
|
|
169
|
-
'peerDependencies',
|
|
170
|
-
'optionalDependencies',
|
|
171
|
-
];
|
|
172
|
-
for (const depType of dependencyTypes) {
|
|
173
|
-
if (json[depType]) {
|
|
174
|
-
for (const [dep, version] of Object.entries(dependenciesToUpdate)) {
|
|
175
|
-
// Resolve the package name from the project graph metadata, as it may not match the project name
|
|
176
|
-
const packageName = projectGraph.nodes[dep].data.metadata?.js?.packageName;
|
|
177
|
-
if (!packageName) {
|
|
178
|
-
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`);
|
|
179
|
-
}
|
|
180
|
-
if (json[depType][packageName]) {
|
|
181
|
-
json[depType][packageName] = version;
|
|
182
|
-
}
|
|
183
|
-
}
|
|
184
|
-
}
|
|
185
|
-
}
|
|
186
|
-
return json;
|
|
187
|
-
});
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
parseDependencies(packageJson) {
|
|
191
|
-
const result = {};
|
|
192
|
-
const dependencyCollections = [
|
|
193
|
-
'dependencies',
|
|
194
|
-
'devDependencies',
|
|
195
|
-
'peerDependencies',
|
|
196
|
-
'optionalDependencies',
|
|
197
|
-
];
|
|
198
|
-
for (const depCollection of dependencyCollections) {
|
|
199
|
-
if (packageJson[depCollection]) {
|
|
200
|
-
result[depCollection] = {};
|
|
201
|
-
for (const [dep, spec] of Object.entries(packageJson[depCollection])) {
|
|
202
|
-
const resolvedSpec = (0, resolve_version_spec_1.resolveVersionSpec)(dep, packageJson.version, spec, this.projectGraphNode.data.root);
|
|
203
|
-
result[depCollection][dep] = {
|
|
204
|
-
resolvedVersion: resolvedSpec,
|
|
205
|
-
rawVersionSpec: spec,
|
|
206
|
-
};
|
|
207
|
-
}
|
|
208
|
-
}
|
|
209
|
-
}
|
|
210
|
-
return result;
|
|
211
|
-
}
|
|
212
|
-
}
|
|
213
|
-
exports.default = JsVersionActions;
|