nx 19.2.2 → 19.2.3

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.2",
3
+ "version": "19.2.3",
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": {
@@ -70,7 +70,7 @@
70
70
  "yargs-parser": "21.1.1",
71
71
  "node-machine-id": "1.1.12",
72
72
  "ora": "5.3.0",
73
- "@nrwl/tao": "19.2.2"
73
+ "@nrwl/tao": "19.2.3"
74
74
  },
75
75
  "peerDependencies": {
76
76
  "@swc-node/register": "^1.8.0",
@@ -85,16 +85,16 @@
85
85
  }
86
86
  },
87
87
  "optionalDependencies": {
88
- "@nx/nx-darwin-x64": "19.2.2",
89
- "@nx/nx-darwin-arm64": "19.2.2",
90
- "@nx/nx-linux-x64-gnu": "19.2.2",
91
- "@nx/nx-linux-x64-musl": "19.2.2",
92
- "@nx/nx-win32-x64-msvc": "19.2.2",
93
- "@nx/nx-linux-arm64-gnu": "19.2.2",
94
- "@nx/nx-linux-arm64-musl": "19.2.2",
95
- "@nx/nx-linux-arm-gnueabihf": "19.2.2",
96
- "@nx/nx-win32-arm64-msvc": "19.2.2",
97
- "@nx/nx-freebsd-x64": "19.2.2"
88
+ "@nx/nx-darwin-x64": "19.2.3",
89
+ "@nx/nx-darwin-arm64": "19.2.3",
90
+ "@nx/nx-linux-x64-gnu": "19.2.3",
91
+ "@nx/nx-linux-x64-musl": "19.2.3",
92
+ "@nx/nx-win32-x64-msvc": "19.2.3",
93
+ "@nx/nx-linux-arm64-gnu": "19.2.3",
94
+ "@nx/nx-linux-arm64-musl": "19.2.3",
95
+ "@nx/nx-linux-arm-gnueabihf": "19.2.3",
96
+ "@nx/nx-win32-arm64-msvc": "19.2.3",
97
+ "@nx/nx-freebsd-x64": "19.2.3"
98
98
  },
99
99
  "nx-migrations": {
100
100
  "migrations": "./migrations.json",
@@ -378,7 +378,7 @@ function resolveGeneratorData({ collectionName, generatorName, configGeneratorOp
378
378
  * the @nx/js generator config in their nx.json so we need to be clear about what the problem is)
379
379
  */
380
380
  if (collectionName === '@nx/js') {
381
- throw new Error('The @nx/js plugin is required in order to version your JavaScript packages. Please install it and try again.');
381
+ throw new Error('The @nx/js plugin is required in order to version your JavaScript packages. Run "nx add @nx/js" to add it to your workspace.');
382
382
  }
383
383
  throw new Error(`Unable to resolve the package ${collectionName} in order to load the generator called ${generatorName}. Is the package installed?`);
384
384
  }
@@ -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("nx/src/devkit-exports").FileData[];
12
+ allWorkspaceFiles: import("../file-utils").FileData[];
13
13
  fileMap: {
14
14
  projectFileMap: ProjectFiles;
15
- nonProjectFiles: import("nx/src/native").FileData[];
15
+ nonProjectFiles: import("../../native").FileData[];
16
16
  };
17
- rustReferences: import("nx/src/native").NxWorkspaceFilesExternals;
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.