@clickview/ship-it 0.0.35 → 0.0.36
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.
|
@@ -186,9 +186,9 @@ var BumpPackagesTask = /** @class */ (function () {
|
|
|
186
186
|
return "".concat(utils_1.Versions.getNextVersion(version, 'patch'), "-rc.0");
|
|
187
187
|
}
|
|
188
188
|
if (this.isReleaseBranch)
|
|
189
|
-
utils_1.Versions.getNextVersion(version, 'minor');
|
|
189
|
+
return utils_1.Versions.getNextVersion(version, 'minor');
|
|
190
190
|
if (this.isHotfixBranch)
|
|
191
|
-
utils_1.Versions.getNextVersion(version, 'patch');
|
|
191
|
+
return utils_1.Versions.getNextVersion(version, 'patch');
|
|
192
192
|
return version;
|
|
193
193
|
};
|
|
194
194
|
BumpPackagesTask.prototype.getIsInPrerelease = function (branchName) {
|