nx 19.8.4 → 19.8.6
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.8.
|
3
|
+
"version": "19.8.6",
|
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": {
|
@@ -67,7 +67,7 @@
|
|
67
67
|
"yargs-parser": "21.1.1",
|
68
68
|
"node-machine-id": "1.1.12",
|
69
69
|
"ora": "5.3.0",
|
70
|
-
"@nrwl/tao": "19.8.
|
70
|
+
"@nrwl/tao": "19.8.6"
|
71
71
|
},
|
72
72
|
"peerDependencies": {
|
73
73
|
"@swc-node/register": "^1.8.0",
|
@@ -82,16 +82,16 @@
|
|
82
82
|
}
|
83
83
|
},
|
84
84
|
"optionalDependencies": {
|
85
|
-
"@nx/nx-darwin-x64": "19.8.
|
86
|
-
"@nx/nx-darwin-arm64": "19.8.
|
87
|
-
"@nx/nx-linux-x64-gnu": "19.8.
|
88
|
-
"@nx/nx-linux-x64-musl": "19.8.
|
89
|
-
"@nx/nx-win32-x64-msvc": "19.8.
|
90
|
-
"@nx/nx-linux-arm64-gnu": "19.8.
|
91
|
-
"@nx/nx-linux-arm64-musl": "19.8.
|
92
|
-
"@nx/nx-linux-arm-gnueabihf": "19.8.
|
93
|
-
"@nx/nx-win32-arm64-msvc": "19.8.
|
94
|
-
"@nx/nx-freebsd-x64": "19.8.
|
85
|
+
"@nx/nx-darwin-x64": "19.8.6",
|
86
|
+
"@nx/nx-darwin-arm64": "19.8.6",
|
87
|
+
"@nx/nx-linux-x64-gnu": "19.8.6",
|
88
|
+
"@nx/nx-linux-x64-musl": "19.8.6",
|
89
|
+
"@nx/nx-win32-x64-msvc": "19.8.6",
|
90
|
+
"@nx/nx-linux-arm64-gnu": "19.8.6",
|
91
|
+
"@nx/nx-linux-arm64-musl": "19.8.6",
|
92
|
+
"@nx/nx-linux-arm-gnueabihf": "19.8.6",
|
93
|
+
"@nx/nx-win32-arm64-msvc": "19.8.6",
|
94
|
+
"@nx/nx-freebsd-x64": "19.8.6"
|
95
95
|
},
|
96
96
|
"nx-migrations": {
|
97
97
|
"migrations": "./migrations.json",
|
Binary file
|
@@ -3,6 +3,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.isNxCloudUsed = isNxCloudUsed;
|
4
4
|
exports.getNxCloudUrl = getNxCloudUrl;
|
5
5
|
function isNxCloudUsed(nxJson) {
|
6
|
+
if (process.env.NX_NO_CLOUD === 'true' || nxJson.neverConnectToCloud) {
|
7
|
+
return false;
|
8
|
+
}
|
6
9
|
return (!!process.env.NX_CLOUD_ACCESS_TOKEN ||
|
7
10
|
!!nxJson.nxCloudAccessToken ||
|
8
11
|
!!nxJson.nxCloudId ||
|