@clickview/ship-it 0.0.35-rc.4 → 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) {
|
|
@@ -128,7 +128,7 @@ var InstallPackagesTask = /** @class */ (function () {
|
|
|
128
128
|
/**
|
|
129
129
|
* Run npm i to update our package log file
|
|
130
130
|
*/
|
|
131
|
-
utils_1.Logger.logInfo("[".concat(project.title, "]: Running npm i"));
|
|
131
|
+
utils_1.Logger.logInfo("[".concat(project.title, "]: Running npm i --package-lock-only --verbose"));
|
|
132
132
|
this.npmInstall(project, folderName);
|
|
133
133
|
utils_1.Logger.logInfo('\n');
|
|
134
134
|
/**
|
|
@@ -221,7 +221,7 @@ var InstallPackagesTask = /** @class */ (function () {
|
|
|
221
221
|
/**
|
|
222
222
|
* Run npm i to update our package log file
|
|
223
223
|
*/
|
|
224
|
-
utils_1.Logger.logInfo("[".concat(project.title, "]: Running npm i"));
|
|
224
|
+
utils_1.Logger.logInfo("[".concat(project.title, "]: Running npm i --package-lock-only --verbose"));
|
|
225
225
|
this.npmInstall(project, options.milestone);
|
|
226
226
|
utils_1.Logger.logInfo('\n');
|
|
227
227
|
/**
|