nx 20.2.0-canary.20241113-cda7f26 → 20.2.0-canary.20241115-3c6c387
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": "20.2.0-canary.
|
3
|
+
"version": "20.2.0-canary.20241115-3c6c387",
|
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.2.0-canary.
|
84
|
-
"@nx/nx-darwin-arm64": "20.2.0-canary.
|
85
|
-
"@nx/nx-linux-x64-gnu": "20.2.0-canary.
|
86
|
-
"@nx/nx-linux-x64-musl": "20.2.0-canary.
|
87
|
-
"@nx/nx-win32-x64-msvc": "20.2.0-canary.
|
88
|
-
"@nx/nx-linux-arm64-gnu": "20.2.0-canary.
|
89
|
-
"@nx/nx-linux-arm64-musl": "20.2.0-canary.
|
90
|
-
"@nx/nx-linux-arm-gnueabihf": "20.2.0-canary.
|
91
|
-
"@nx/nx-win32-arm64-msvc": "20.2.0-canary.
|
92
|
-
"@nx/nx-freebsd-x64": "20.2.0-canary.
|
83
|
+
"@nx/nx-darwin-x64": "20.2.0-canary.20241115-3c6c387",
|
84
|
+
"@nx/nx-darwin-arm64": "20.2.0-canary.20241115-3c6c387",
|
85
|
+
"@nx/nx-linux-x64-gnu": "20.2.0-canary.20241115-3c6c387",
|
86
|
+
"@nx/nx-linux-x64-musl": "20.2.0-canary.20241115-3c6c387",
|
87
|
+
"@nx/nx-win32-x64-msvc": "20.2.0-canary.20241115-3c6c387",
|
88
|
+
"@nx/nx-linux-arm64-gnu": "20.2.0-canary.20241115-3c6c387",
|
89
|
+
"@nx/nx-linux-arm64-musl": "20.2.0-canary.20241115-3c6c387",
|
90
|
+
"@nx/nx-linux-arm-gnueabihf": "20.2.0-canary.20241115-3c6c387",
|
91
|
+
"@nx/nx-win32-arm64-msvc": "20.2.0-canary.20241115-3c6c387",
|
92
|
+
"@nx/nx-freebsd-x64": "20.2.0-canary.20241115-3c6c387"
|
93
93
|
},
|
94
94
|
"nx-migrations": {
|
95
95
|
"migrations": "./migrations.json",
|
package/src/daemon/tmp-dir.js
CHANGED
@@ -43,7 +43,7 @@ function isDaemonDisabled() {
|
|
43
43
|
function socketDirName() {
|
44
44
|
const hasher = (0, crypto_1.createHash)('sha256');
|
45
45
|
hasher.update(workspace_root_1.workspaceRoot.toLowerCase());
|
46
|
-
const unique = hasher.digest('hex').substring(0,
|
46
|
+
const unique = hasher.digest('hex').substring(0, 10);
|
47
47
|
return (0, path_1.join)(tmp_1.tmpdir, unique);
|
48
48
|
}
|
49
49
|
/**
|
Binary file
|
@@ -140,7 +140,11 @@ class ProcessTasks {
|
|
140
140
|
}
|
141
141
|
}
|
142
142
|
else {
|
143
|
-
|
143
|
+
// Create a dummy task for task.target.project... which simulates if depProject had dependencyConfig.target
|
144
|
+
const dummyId = this.getId(depProject.name, task.target.project +
|
145
|
+
'__' +
|
146
|
+
dependencyConfig.target +
|
147
|
+
DUMMY_TASK_TARGET, undefined);
|
144
148
|
this.dependencies[task.id].push(dummyId);
|
145
149
|
this.dependencies[dummyId] ??= [];
|
146
150
|
const noopTask = this.createDummyTask(dummyId, task);
|