nx 19.2.0-beta.0 → 19.2.0-beta.1

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.2.0-beta.0",
3
+ "version": "19.2.0-beta.1",
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.0"
72
+ "@nrwl/tao": "19.2.0-beta.1"
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.0",
88
- "@nx/nx-darwin-arm64": "19.2.0-beta.0",
89
- "@nx/nx-linux-x64-gnu": "19.2.0-beta.0",
90
- "@nx/nx-linux-x64-musl": "19.2.0-beta.0",
91
- "@nx/nx-win32-x64-msvc": "19.2.0-beta.0",
92
- "@nx/nx-linux-arm64-gnu": "19.2.0-beta.0",
93
- "@nx/nx-linux-arm64-musl": "19.2.0-beta.0",
94
- "@nx/nx-linux-arm-gnueabihf": "19.2.0-beta.0",
95
- "@nx/nx-win32-arm64-msvc": "19.2.0-beta.0",
96
- "@nx/nx-freebsd-x64": "19.2.0-beta.0"
87
+ "@nx/nx-darwin-x64": "19.2.0-beta.1",
88
+ "@nx/nx-darwin-arm64": "19.2.0-beta.1",
89
+ "@nx/nx-linux-x64-gnu": "19.2.0-beta.1",
90
+ "@nx/nx-linux-x64-musl": "19.2.0-beta.1",
91
+ "@nx/nx-win32-x64-msvc": "19.2.0-beta.1",
92
+ "@nx/nx-linux-arm64-gnu": "19.2.0-beta.1",
93
+ "@nx/nx-linux-arm64-musl": "19.2.0-beta.1",
94
+ "@nx/nx-linux-arm-gnueabihf": "19.2.0-beta.1",
95
+ "@nx/nx-win32-arm64-msvc": "19.2.0-beta.1",
96
+ "@nx/nx-freebsd-x64": "19.2.0-beta.1"
97
97
  },
98
98
  "nx-migrations": {
99
99
  "migrations": "./migrations.json",
@@ -233,7 +233,7 @@ function getNodes(data, keyMap, isV5) {
233
233
  function getHoistedVersion(hoistedDependencies, packageName, isV5) {
234
234
  let version = (0, package_json_1.getHoistedPackageVersion)(packageName);
235
235
  if (!version) {
236
- const key = Object.keys(hoistedDependencies).find((k) => k.startsWith(isV5 ? `/${packageName}/` : `/${packageName}@`));
236
+ const key = Object.keys(hoistedDependencies).find((k) => k.startsWith(`/${packageName}/`));
237
237
  if (key) {
238
238
  version = parseBaseVersion(getVersion(key.slice(1), packageName), isV5);
239
239
  }
@@ -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("../file-utils").FileData[];
12
+ allWorkspaceFiles: import("nx/src/devkit-exports").FileData[];
13
13
  fileMap: {
14
14
  projectFileMap: ProjectFiles;
15
- nonProjectFiles: import("../../native").FileData[];
15
+ nonProjectFiles: import("nx/src/native").FileData[];
16
16
  };
17
- rustReferences: import("../../native").NxWorkspaceFilesExternals;
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.
@@ -226,7 +226,7 @@ function generateLinkOutput({ pluginName, name, type, }) {
226
226
  !pluginName.startsWith(nrwlPackagePrefix)) {
227
227
  return '';
228
228
  }
229
- const link = `https://nx.dev/packages/${pluginName.substring(pluginName.startsWith(nxPackagePrefix)
229
+ const link = `https://nx.dev/nx-api/${pluginName.substring(pluginName.startsWith(nxPackagePrefix)
230
230
  ? nxPackagePrefix.length
231
231
  : nrwlPackagePrefix.length)}/${type}/${name}`;
232
232
  return `\n\n${chalk.dim('Find more information and examples at:')} ${chalk.bold(link)}`;