nx 20.2.0-canary.20241205-15060e3 → 20.2.0-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "nx",
|
3
|
-
"version": "20.2.0-
|
3
|
+
"version": "20.2.0-rc.0",
|
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-
|
84
|
-
"@nx/nx-darwin-arm64": "20.2.0-
|
85
|
-
"@nx/nx-linux-x64-gnu": "20.2.0-
|
86
|
-
"@nx/nx-linux-x64-musl": "20.2.0-
|
87
|
-
"@nx/nx-win32-x64-msvc": "20.2.0-
|
88
|
-
"@nx/nx-linux-arm64-gnu": "20.2.0-
|
89
|
-
"@nx/nx-linux-arm64-musl": "20.2.0-
|
90
|
-
"@nx/nx-linux-arm-gnueabihf": "20.2.0-
|
91
|
-
"@nx/nx-win32-arm64-msvc": "20.2.0-
|
92
|
-
"@nx/nx-freebsd-x64": "20.2.0-
|
83
|
+
"@nx/nx-darwin-x64": "20.2.0-rc.0",
|
84
|
+
"@nx/nx-darwin-arm64": "20.2.0-rc.0",
|
85
|
+
"@nx/nx-linux-x64-gnu": "20.2.0-rc.0",
|
86
|
+
"@nx/nx-linux-x64-musl": "20.2.0-rc.0",
|
87
|
+
"@nx/nx-win32-x64-msvc": "20.2.0-rc.0",
|
88
|
+
"@nx/nx-linux-arm64-gnu": "20.2.0-rc.0",
|
89
|
+
"@nx/nx-linux-arm64-musl": "20.2.0-rc.0",
|
90
|
+
"@nx/nx-linux-arm-gnueabihf": "20.2.0-rc.0",
|
91
|
+
"@nx/nx-win32-arm64-msvc": "20.2.0-rc.0",
|
92
|
+
"@nx/nx-freebsd-x64": "20.2.0-rc.0"
|
93
93
|
},
|
94
94
|
"nx-migrations": {
|
95
95
|
"migrations": "./migrations.json",
|
@@ -814,7 +814,8 @@ async function generateChangelogForProjects({ tree, args, changes, projectsVersi
|
|
814
814
|
* newVersion will be null in the case that no changes were detected (e.g. in conventional commits mode),
|
815
815
|
* no changelog entry is relevant in that case.
|
816
816
|
*/
|
817
|
-
if (projectsVersionData[project.name]
|
817
|
+
if (!projectsVersionData[project.name] ||
|
818
|
+
projectsVersionData[project.name].newVersion === null) {
|
818
819
|
continue;
|
819
820
|
}
|
820
821
|
const releaseVersion = new shared_1.ReleaseVersion({
|
Binary file
|