nx 18.3.4 → 18.3.5
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": "18.3.
|
3
|
+
"version": "18.3.5",
|
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": "18.3.
|
69
|
+
"@nrwl/tao": "18.3.5"
|
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": "18.3.
|
85
|
-
"@nx/nx-darwin-arm64": "18.3.
|
86
|
-
"@nx/nx-linux-x64-gnu": "18.3.
|
87
|
-
"@nx/nx-linux-x64-musl": "18.3.
|
88
|
-
"@nx/nx-win32-x64-msvc": "18.3.
|
89
|
-
"@nx/nx-linux-arm64-gnu": "18.3.
|
90
|
-
"@nx/nx-linux-arm64-musl": "18.3.
|
91
|
-
"@nx/nx-linux-arm-gnueabihf": "18.3.
|
92
|
-
"@nx/nx-win32-arm64-msvc": "18.3.
|
93
|
-
"@nx/nx-freebsd-x64": "18.3.
|
84
|
+
"@nx/nx-darwin-x64": "18.3.5",
|
85
|
+
"@nx/nx-darwin-arm64": "18.3.5",
|
86
|
+
"@nx/nx-linux-x64-gnu": "18.3.5",
|
87
|
+
"@nx/nx-linux-x64-musl": "18.3.5",
|
88
|
+
"@nx/nx-win32-x64-msvc": "18.3.5",
|
89
|
+
"@nx/nx-linux-arm64-gnu": "18.3.5",
|
90
|
+
"@nx/nx-linux-arm64-musl": "18.3.5",
|
91
|
+
"@nx/nx-linux-arm-gnueabihf": "18.3.5",
|
92
|
+
"@nx/nx-win32-arm64-msvc": "18.3.5",
|
93
|
+
"@nx/nx-freebsd-x64": "18.3.5"
|
94
94
|
},
|
95
95
|
"nx-migrations": {
|
96
96
|
"migrations": "./migrations.json",
|
@@ -58,7 +58,7 @@ function extractFilesFromInputs(inputs, namedInputs) {
|
|
58
58
|
const globalFiles = [];
|
59
59
|
for (const input of inputs) {
|
60
60
|
if (typeof input === 'string' && input in namedInputs) {
|
61
|
-
|
61
|
+
globalFiles.push(...extractFilesFromInputs(namedInputs[input], namedInputs));
|
62
62
|
}
|
63
63
|
else if (typeof input === 'string' &&
|
64
64
|
input.startsWith('{workspaceRoot}/')) {
|
@@ -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("../file-utils").FileData[];
|
13
13
|
fileMap: {
|
14
14
|
projectFileMap: ProjectFiles;
|
15
|
-
nonProjectFiles: import("
|
15
|
+
nonProjectFiles: import("../../native").FileData[];
|
16
16
|
};
|
17
|
-
rustReferences: import("
|
17
|
+
rustReferences: import("../../native").NxWorkspaceFilesExternals;
|
18
18
|
}>;
|
19
19
|
/**
|
20
20
|
* Walk through the workspace and return `ProjectConfigurations`. Only use this if the projectFileMap is not needed.
|