nx 19.2.0-beta.3 → 19.2.0-beta.5
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "nx",
|
3
|
-
"version": "19.2.0-beta.
|
3
|
+
"version": "19.2.0-beta.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": {
|
@@ -69,7 +69,7 @@
|
|
69
69
|
"yargs-parser": "21.1.1",
|
70
70
|
"node-machine-id": "1.1.12",
|
71
71
|
"ora": "5.3.0",
|
72
|
-
"@nrwl/tao": "19.2.0-beta.
|
72
|
+
"@nrwl/tao": "19.2.0-beta.5"
|
73
73
|
},
|
74
74
|
"peerDependencies": {
|
75
75
|
"@swc-node/register": "^1.8.0",
|
@@ -84,16 +84,16 @@
|
|
84
84
|
}
|
85
85
|
},
|
86
86
|
"optionalDependencies": {
|
87
|
-
"@nx/nx-darwin-x64": "19.2.0-beta.
|
88
|
-
"@nx/nx-darwin-arm64": "19.2.0-beta.
|
89
|
-
"@nx/nx-linux-x64-gnu": "19.2.0-beta.
|
90
|
-
"@nx/nx-linux-x64-musl": "19.2.0-beta.
|
91
|
-
"@nx/nx-win32-x64-msvc": "19.2.0-beta.
|
92
|
-
"@nx/nx-linux-arm64-gnu": "19.2.0-beta.
|
93
|
-
"@nx/nx-linux-arm64-musl": "19.2.0-beta.
|
94
|
-
"@nx/nx-linux-arm-gnueabihf": "19.2.0-beta.
|
95
|
-
"@nx/nx-win32-arm64-msvc": "19.2.0-beta.
|
96
|
-
"@nx/nx-freebsd-x64": "19.2.0-beta.
|
87
|
+
"@nx/nx-darwin-x64": "19.2.0-beta.5",
|
88
|
+
"@nx/nx-darwin-arm64": "19.2.0-beta.5",
|
89
|
+
"@nx/nx-linux-x64-gnu": "19.2.0-beta.5",
|
90
|
+
"@nx/nx-linux-x64-musl": "19.2.0-beta.5",
|
91
|
+
"@nx/nx-win32-x64-msvc": "19.2.0-beta.5",
|
92
|
+
"@nx/nx-linux-arm64-gnu": "19.2.0-beta.5",
|
93
|
+
"@nx/nx-linux-arm64-musl": "19.2.0-beta.5",
|
94
|
+
"@nx/nx-linux-arm-gnueabihf": "19.2.0-beta.5",
|
95
|
+
"@nx/nx-win32-arm64-msvc": "19.2.0-beta.5",
|
96
|
+
"@nx/nx-freebsd-x64": "19.2.0-beta.5"
|
97
97
|
},
|
98
98
|
"nx-migrations": {
|
99
99
|
"migrations": "./migrations.json",
|
@@ -5,4 +5,4 @@ export declare function isNxPluginV2(plugin: NxPlugin): plugin is NxPluginV2;
|
|
5
5
|
export declare function isNxPluginV1(plugin: NxPlugin | LoadedNxPlugin): plugin is NxPluginV1;
|
6
6
|
export declare function normalizeNxPlugin(plugin: NxPlugin): NormalizedPlugin;
|
7
7
|
export type AsyncFn<T extends Function> = T extends (...args: infer A) => infer R ? (...args: A) => Promise<Awaited<R>> : never;
|
8
|
-
export declare function createNodesFromFiles<T = unknown>(createNodes: CreateNodesFunction
|
8
|
+
export declare function createNodesFromFiles<T = unknown>(createNodes: CreateNodesFunction<T>, configFiles: readonly string[], options: T, context: CreateNodesContextV2): Promise<[file: string, value: CreateNodesResult][]>;
|
@@ -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.
|