nx 20.2.0-canary.20241113-cda7f26 → 20.2.0-canary.20241114-08953af

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.20241113-cda7f26",
3
+ "version": "20.2.0-canary.20241114-08953af",
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.20241113-cda7f26",
84
- "@nx/nx-darwin-arm64": "20.2.0-canary.20241113-cda7f26",
85
- "@nx/nx-linux-x64-gnu": "20.2.0-canary.20241113-cda7f26",
86
- "@nx/nx-linux-x64-musl": "20.2.0-canary.20241113-cda7f26",
87
- "@nx/nx-win32-x64-msvc": "20.2.0-canary.20241113-cda7f26",
88
- "@nx/nx-linux-arm64-gnu": "20.2.0-canary.20241113-cda7f26",
89
- "@nx/nx-linux-arm64-musl": "20.2.0-canary.20241113-cda7f26",
90
- "@nx/nx-linux-arm-gnueabihf": "20.2.0-canary.20241113-cda7f26",
91
- "@nx/nx-win32-arm64-msvc": "20.2.0-canary.20241113-cda7f26",
92
- "@nx/nx-freebsd-x64": "20.2.0-canary.20241113-cda7f26"
83
+ "@nx/nx-darwin-x64": "20.2.0-canary.20241114-08953af",
84
+ "@nx/nx-darwin-arm64": "20.2.0-canary.20241114-08953af",
85
+ "@nx/nx-linux-x64-gnu": "20.2.0-canary.20241114-08953af",
86
+ "@nx/nx-linux-x64-musl": "20.2.0-canary.20241114-08953af",
87
+ "@nx/nx-win32-x64-msvc": "20.2.0-canary.20241114-08953af",
88
+ "@nx/nx-linux-arm64-gnu": "20.2.0-canary.20241114-08953af",
89
+ "@nx/nx-linux-arm64-musl": "20.2.0-canary.20241114-08953af",
90
+ "@nx/nx-linux-arm-gnueabihf": "20.2.0-canary.20241114-08953af",
91
+ "@nx/nx-win32-arm64-msvc": "20.2.0-canary.20241114-08953af",
92
+ "@nx/nx-freebsd-x64": "20.2.0-canary.20241114-08953af"
93
93
  },
94
94
  "nx-migrations": {
95
95
  "migrations": "./migrations.json",
@@ -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, 20);
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
- const dummyId = this.getId(depProject.name, task.target.target + DUMMY_TASK_TARGET, undefined);
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);