nx 20.0.11 → 20.0.12
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.0.
|
3
|
+
"version": "20.0.12",
|
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.0.
|
84
|
-
"@nx/nx-darwin-arm64": "20.0.
|
85
|
-
"@nx/nx-linux-x64-gnu": "20.0.
|
86
|
-
"@nx/nx-linux-x64-musl": "20.0.
|
87
|
-
"@nx/nx-win32-x64-msvc": "20.0.
|
88
|
-
"@nx/nx-linux-arm64-gnu": "20.0.
|
89
|
-
"@nx/nx-linux-arm64-musl": "20.0.
|
90
|
-
"@nx/nx-linux-arm-gnueabihf": "20.0.
|
91
|
-
"@nx/nx-win32-arm64-msvc": "20.0.
|
92
|
-
"@nx/nx-freebsd-x64": "20.0.
|
83
|
+
"@nx/nx-darwin-x64": "20.0.12",
|
84
|
+
"@nx/nx-darwin-arm64": "20.0.12",
|
85
|
+
"@nx/nx-linux-x64-gnu": "20.0.12",
|
86
|
+
"@nx/nx-linux-x64-musl": "20.0.12",
|
87
|
+
"@nx/nx-win32-x64-msvc": "20.0.12",
|
88
|
+
"@nx/nx-linux-arm64-gnu": "20.0.12",
|
89
|
+
"@nx/nx-linux-arm64-musl": "20.0.12",
|
90
|
+
"@nx/nx-linux-arm-gnueabihf": "20.0.12",
|
91
|
+
"@nx/nx-win32-arm64-msvc": "20.0.12",
|
92
|
+
"@nx/nx-freebsd-x64": "20.0.12"
|
93
93
|
},
|
94
94
|
"nx-migrations": {
|
95
95
|
"migrations": "./migrations.json",
|
Binary file
|
@@ -140,7 +140,7 @@ class ProcessTasks {
|
|
140
140
|
}
|
141
141
|
}
|
142
142
|
else {
|
143
|
-
const dummyId = this.getId(depProject.name, DUMMY_TASK_TARGET, undefined);
|
143
|
+
const dummyId = this.getId(depProject.name, task.target.target + DUMMY_TASK_TARGET, undefined);
|
144
144
|
this.dependencies[task.id].push(dummyId);
|
145
145
|
this.dependencies[dummyId] ??= [];
|
146
146
|
const noopTask = this.createDummyTask(dummyId, task);
|