nx 20.1.0-canary.20241030-62f58eb → 20.1.0-canary.20241101-d4f4dac

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.1.0-canary.20241030-62f58eb",
3
+ "version": "20.1.0-canary.20241101-d4f4dac",
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": {
@@ -80,16 +80,16 @@
80
80
  }
81
81
  },
82
82
  "optionalDependencies": {
83
- "@nx/nx-darwin-x64": "20.1.0-canary.20241030-62f58eb",
84
- "@nx/nx-darwin-arm64": "20.1.0-canary.20241030-62f58eb",
85
- "@nx/nx-linux-x64-gnu": "20.1.0-canary.20241030-62f58eb",
86
- "@nx/nx-linux-x64-musl": "20.1.0-canary.20241030-62f58eb",
87
- "@nx/nx-win32-x64-msvc": "20.1.0-canary.20241030-62f58eb",
88
- "@nx/nx-linux-arm64-gnu": "20.1.0-canary.20241030-62f58eb",
89
- "@nx/nx-linux-arm64-musl": "20.1.0-canary.20241030-62f58eb",
90
- "@nx/nx-linux-arm-gnueabihf": "20.1.0-canary.20241030-62f58eb",
91
- "@nx/nx-win32-arm64-msvc": "20.1.0-canary.20241030-62f58eb",
92
- "@nx/nx-freebsd-x64": "20.1.0-canary.20241030-62f58eb"
83
+ "@nx/nx-darwin-x64": "20.1.0-canary.20241101-d4f4dac",
84
+ "@nx/nx-darwin-arm64": "20.1.0-canary.20241101-d4f4dac",
85
+ "@nx/nx-linux-x64-gnu": "20.1.0-canary.20241101-d4f4dac",
86
+ "@nx/nx-linux-x64-musl": "20.1.0-canary.20241101-d4f4dac",
87
+ "@nx/nx-win32-x64-msvc": "20.1.0-canary.20241101-d4f4dac",
88
+ "@nx/nx-linux-arm64-gnu": "20.1.0-canary.20241101-d4f4dac",
89
+ "@nx/nx-linux-arm64-musl": "20.1.0-canary.20241101-d4f4dac",
90
+ "@nx/nx-linux-arm-gnueabihf": "20.1.0-canary.20241101-d4f4dac",
91
+ "@nx/nx-win32-arm64-msvc": "20.1.0-canary.20241101-d4f4dac",
92
+ "@nx/nx-freebsd-x64": "20.1.0-canary.20241101-d4f4dac"
93
93
  },
94
94
  "nx-migrations": {
95
95
  "migrations": "./migrations.json",
Binary file
@@ -9,7 +9,7 @@ const workspace_root_1 = require("./workspace-root");
9
9
  async function printPowerpackLicense() {
10
10
  try {
11
11
  const { organizationName, seatCount, workspaceCount } = await getPowerpackLicenseInformation();
12
- logger_1.logger.log(`Nx Powerpack Licensed to ${organizationName} for ${seatCount} user${seatCount > 1 ? '' : 's'} in ${workspaceCount === 9999 ? 'an unlimited number of' : workspaceCount} workspace${workspaceCount > 1 ? '' : 's'}`);
12
+ logger_1.logger.log(`Nx Powerpack Licensed to ${organizationName} for ${seatCount} user${seatCount > 1 ? 's' : ''} in ${workspaceCount === 9999 ? 'an unlimited number of' : workspaceCount} workspace${workspaceCount > 1 ? 's' : ''}`);
13
13
  }
14
14
  catch { }
15
15
  }