nx 20.1.0-canary.20241031-ce05a98 → 20.1.0-canary.20241101-d4f4dac
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +11 -11
- package/src/native/nx.wasm32-wasi.wasm +0 -0
- package/src/utils/powerpack.js +1 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "nx",
|
3
|
-
"version": "20.1.0-canary.
|
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.
|
84
|
-
"@nx/nx-darwin-arm64": "20.1.0-canary.
|
85
|
-
"@nx/nx-linux-x64-gnu": "20.1.0-canary.
|
86
|
-
"@nx/nx-linux-x64-musl": "20.1.0-canary.
|
87
|
-
"@nx/nx-win32-x64-msvc": "20.1.0-canary.
|
88
|
-
"@nx/nx-linux-arm64-gnu": "20.1.0-canary.
|
89
|
-
"@nx/nx-linux-arm64-musl": "20.1.0-canary.
|
90
|
-
"@nx/nx-linux-arm-gnueabihf": "20.1.0-canary.
|
91
|
-
"@nx/nx-win32-arm64-msvc": "20.1.0-canary.
|
92
|
-
"@nx/nx-freebsd-x64": "20.1.0-canary.
|
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
|
package/src/utils/powerpack.js
CHANGED
@@ -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 ? '' : '
|
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
|
}
|