@storm-software/git-tools 2.131.14 → 2.131.15
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/bin/git.cjs +20 -4
- package/bin/git.cjs.map +1 -1
- package/bin/git.js +20 -4
- package/bin/git.js.map +1 -1
- package/package.json +2 -2
package/bin/git.cjs
CHANGED
|
@@ -3809,18 +3809,34 @@ var StormReleaseGroupProcessor = class extends releaseGroupProcessor.ReleaseGrou
|
|
|
3809
3809
|
let bumped = false;
|
|
3810
3810
|
const firstProject = releaseGroup.projects.reduce((ret, project) => {
|
|
3811
3811
|
const currentVersion = this.#getCurrentCachedVersionForProject(project);
|
|
3812
|
+
if (!currentVersion) {
|
|
3813
|
+
chunkYXQQUYO7_cjs.writeTrace(
|
|
3814
|
+
`No current version found for project ${project} in release group ${releaseGroup.name}, skipping version comparison.`,
|
|
3815
|
+
this.workspaceConfig
|
|
3816
|
+
);
|
|
3817
|
+
return "";
|
|
3818
|
+
}
|
|
3812
3819
|
if (!ret) {
|
|
3813
|
-
|
|
3820
|
+
chunkYXQQUYO7_cjs.writeTrace(
|
|
3821
|
+
`Defaulting to first version ${currentVersion} (project: ${project})`,
|
|
3822
|
+
this.workspaceConfig
|
|
3823
|
+
);
|
|
3824
|
+
return project;
|
|
3814
3825
|
}
|
|
3815
3826
|
const largestVersion = this.#getCurrentCachedVersionForProject(ret);
|
|
3816
3827
|
if (!largestVersion) {
|
|
3817
|
-
|
|
3828
|
+
chunkYXQQUYO7_cjs.writeTrace(
|
|
3829
|
+
`No current version found for project ${ret} in release group ${releaseGroup.name}, skipping version comparison.`,
|
|
3830
|
+
this.workspaceConfig
|
|
3831
|
+
);
|
|
3832
|
+
return project;
|
|
3818
3833
|
}
|
|
3819
3834
|
chunkYXQQUYO7_cjs.writeDebug(
|
|
3820
|
-
`Comparing versions for fixed group ${releaseGroup.name}: Current Greatest Version: ${largestVersion}, Current Project Version: ${currentVersion} (project: ${project})
|
|
3835
|
+
`Comparing versions for fixed group ${releaseGroup.name}: Current Greatest Version: ${largestVersion}, Current Project Version: ${currentVersion} (project: ${project})`,
|
|
3836
|
+
this.workspaceConfig
|
|
3821
3837
|
);
|
|
3822
3838
|
if (currentVersion && semver__default.default.gt(currentVersion, largestVersion)) {
|
|
3823
|
-
return
|
|
3839
|
+
return project;
|
|
3824
3840
|
}
|
|
3825
3841
|
return ret;
|
|
3826
3842
|
}, "");
|