nx 20.7.0-canary.20250322-1c238c0 → 20.7.0-canary.20250326-9dd4766

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": "20.7.0-canary.20250322-1c238c0",
3
+ "version": "20.7.0-canary.20250326-9dd4766",
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": {
@@ -82,16 +82,16 @@
82
82
  }
83
83
  },
84
84
  "optionalDependencies": {
85
- "@nx/nx-darwin-arm64": "20.7.0-canary.20250322-1c238c0",
86
- "@nx/nx-darwin-x64": "20.7.0-canary.20250322-1c238c0",
87
- "@nx/nx-freebsd-x64": "20.7.0-canary.20250322-1c238c0",
88
- "@nx/nx-linux-arm-gnueabihf": "20.7.0-canary.20250322-1c238c0",
89
- "@nx/nx-linux-arm64-gnu": "20.7.0-canary.20250322-1c238c0",
90
- "@nx/nx-linux-arm64-musl": "20.7.0-canary.20250322-1c238c0",
91
- "@nx/nx-linux-x64-gnu": "20.7.0-canary.20250322-1c238c0",
92
- "@nx/nx-linux-x64-musl": "20.7.0-canary.20250322-1c238c0",
93
- "@nx/nx-win32-arm64-msvc": "20.7.0-canary.20250322-1c238c0",
94
- "@nx/nx-win32-x64-msvc": "20.7.0-canary.20250322-1c238c0"
85
+ "@nx/nx-darwin-arm64": "20.7.0-canary.20250326-9dd4766",
86
+ "@nx/nx-darwin-x64": "20.7.0-canary.20250326-9dd4766",
87
+ "@nx/nx-freebsd-x64": "20.7.0-canary.20250326-9dd4766",
88
+ "@nx/nx-linux-arm-gnueabihf": "20.7.0-canary.20250326-9dd4766",
89
+ "@nx/nx-linux-arm64-gnu": "20.7.0-canary.20250326-9dd4766",
90
+ "@nx/nx-linux-arm64-musl": "20.7.0-canary.20250326-9dd4766",
91
+ "@nx/nx-linux-x64-gnu": "20.7.0-canary.20250326-9dd4766",
92
+ "@nx/nx-linux-x64-musl": "20.7.0-canary.20250326-9dd4766",
93
+ "@nx/nx-win32-arm64-msvc": "20.7.0-canary.20250326-9dd4766",
94
+ "@nx/nx-win32-x64-msvc": "20.7.0-canary.20250326-9dd4766"
95
95
  },
96
96
  "nx-migrations": {
97
97
  "migrations": "./migrations.json",
@@ -18,7 +18,7 @@ const utils_1 = require("./implementation/utils");
18
18
  async function initHandler(options) {
19
19
  // strip the 'init' command itself so we don't forward it
20
20
  const args = process.argv.slice(3).join(' ');
21
- const version = process.env.NX_VERSION ?? ((0, semver_1.prerelease)(versions_1.nxVersion) ? 'next' : 'latest');
21
+ const version = process.env.NX_VERSION ?? ((0, semver_1.prerelease)(versions_1.nxVersion) ? versions_1.nxVersion : 'latest');
22
22
  if (process.env.NX_VERSION) {
23
23
  console.log(`Using version ${process.env.NX_VERSION}`);
24
24
  }
@@ -24,7 +24,7 @@ const utils_1 = require("./implementation/utils");
24
24
  const react_1 = require("./implementation/react");
25
25
  async function initHandler(options) {
26
26
  process.env.NX_RUNNING_NX_INIT = 'true';
27
- const version = process.env.NX_VERSION ?? ((0, semver_1.prerelease)(versions_1.nxVersion) ? 'next' : 'latest');
27
+ const version = process.env.NX_VERSION ?? ((0, semver_1.prerelease)(versions_1.nxVersion) ? versions_1.nxVersion : 'latest');
28
28
  if (process.env.NX_VERSION) {
29
29
  output_1.output.log({ title: `Using version ${process.env.NX_VERSION}` });
30
30
  }