nx 19.0.0-beta.2 → 19.0.0-canary.20240420-9ca53b7
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
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "nx",
|
3
|
-
"version": "19.0.0-
|
3
|
+
"version": "19.0.0-canary.20240420-9ca53b7",
|
4
4
|
"private": false,
|
5
5
|
"description": "The core Nx plugin contains the core functionality of Nx like the project graph, nx commands and task orchestration.",
|
6
6
|
"repository": {
|
@@ -66,7 +66,7 @@
|
|
66
66
|
"yargs-parser": "21.1.1",
|
67
67
|
"node-machine-id": "1.1.12",
|
68
68
|
"ora": "5.3.0",
|
69
|
-
"@nrwl/tao": "19.0.0-
|
69
|
+
"@nrwl/tao": "19.0.0-canary.20240420-9ca53b7"
|
70
70
|
},
|
71
71
|
"peerDependencies": {
|
72
72
|
"@swc-node/register": "^1.8.0",
|
@@ -81,16 +81,16 @@
|
|
81
81
|
}
|
82
82
|
},
|
83
83
|
"optionalDependencies": {
|
84
|
-
"@nx/nx-darwin-x64": "19.0.0-
|
85
|
-
"@nx/nx-darwin-arm64": "19.0.0-
|
86
|
-
"@nx/nx-linux-x64-gnu": "19.0.0-
|
87
|
-
"@nx/nx-linux-x64-musl": "19.0.0-
|
88
|
-
"@nx/nx-win32-x64-msvc": "19.0.0-
|
89
|
-
"@nx/nx-linux-arm64-gnu": "19.0.0-
|
90
|
-
"@nx/nx-linux-arm64-musl": "19.0.0-
|
91
|
-
"@nx/nx-linux-arm-gnueabihf": "19.0.0-
|
92
|
-
"@nx/nx-win32-arm64-msvc": "19.0.0-
|
93
|
-
"@nx/nx-freebsd-x64": "19.0.0-
|
84
|
+
"@nx/nx-darwin-x64": "19.0.0-canary.20240420-9ca53b7",
|
85
|
+
"@nx/nx-darwin-arm64": "19.0.0-canary.20240420-9ca53b7",
|
86
|
+
"@nx/nx-linux-x64-gnu": "19.0.0-canary.20240420-9ca53b7",
|
87
|
+
"@nx/nx-linux-x64-musl": "19.0.0-canary.20240420-9ca53b7",
|
88
|
+
"@nx/nx-win32-x64-msvc": "19.0.0-canary.20240420-9ca53b7",
|
89
|
+
"@nx/nx-linux-arm64-gnu": "19.0.0-canary.20240420-9ca53b7",
|
90
|
+
"@nx/nx-linux-arm64-musl": "19.0.0-canary.20240420-9ca53b7",
|
91
|
+
"@nx/nx-linux-arm-gnueabihf": "19.0.0-canary.20240420-9ca53b7",
|
92
|
+
"@nx/nx-win32-arm64-msvc": "19.0.0-canary.20240420-9ca53b7",
|
93
|
+
"@nx/nx-freebsd-x64": "19.0.0-canary.20240420-9ca53b7"
|
94
94
|
},
|
95
95
|
"nx-migrations": {
|
96
96
|
"migrations": "./migrations.json",
|
@@ -388,7 +388,7 @@ function mergeTargetConfigurations(target, baseTarget, projectConfigSourceMap, s
|
|
388
388
|
const { configurations: defaultConfigurations, options: defaultOptions, ...baseTargetProperties } = baseTarget ?? {};
|
389
389
|
// Target is "compatible", e.g. executor is defined only once or is the same
|
390
390
|
// in both places. This means that it is likely safe to merge
|
391
|
-
const isCompatible = isCompatibleTarget(
|
391
|
+
const isCompatible = isCompatibleTarget(baseTargetProperties, target);
|
392
392
|
// If the targets are not compatible, we would normally overwrite the old target
|
393
393
|
// with the new one. However, we have a special case for targets that have the
|
394
394
|
// ONLY_MODIFIES_EXISTING_TARGET symbol set. This prevents the merged target
|
@@ -9,12 +9,12 @@ import { LoadedNxPlugin } from '../plugins/internal-api';
|
|
9
9
|
* @param nxJson
|
10
10
|
*/
|
11
11
|
export declare function retrieveWorkspaceFiles(workspaceRoot: string, projectRootMap: Record<string, string>): Promise<{
|
12
|
-
allWorkspaceFiles: import("
|
12
|
+
allWorkspaceFiles: import("nx/src/devkit-exports").FileData[];
|
13
13
|
fileMap: {
|
14
14
|
projectFileMap: ProjectFiles;
|
15
|
-
nonProjectFiles: import("
|
15
|
+
nonProjectFiles: import("nx/src/native").FileData[];
|
16
16
|
};
|
17
|
-
rustReferences: import("
|
17
|
+
rustReferences: import("nx/src/native").NxWorkspaceFilesExternals;
|
18
18
|
}>;
|
19
19
|
/**
|
20
20
|
* Walk through the workspace and return `ProjectConfigurations`. Only use this if the projectFileMap is not needed.
|