@clickview/ship-it 0.0.35-dev.21 → 0.0.35-dev.23
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/lib/src/index.js
CHANGED
|
File without changes
|
|
@@ -88,7 +88,7 @@ var BumpPackagesTask = /** @class */ (function () {
|
|
|
88
88
|
utils_1.Logger.logError("Branch with name ".concat(options.branchName, " was not be found."));
|
|
89
89
|
return [2 /*return*/, false];
|
|
90
90
|
}
|
|
91
|
-
isValid =
|
|
91
|
+
isValid = true;
|
|
92
92
|
if (!isValid)
|
|
93
93
|
return [2 /*return*/, false];
|
|
94
94
|
utils_1.Logger.logInfo('Options are valid! Proceeding to bump package versions.');
|
|
@@ -280,7 +280,7 @@ var InstallPackagesTask = /** @class */ (function () {
|
|
|
280
280
|
};
|
|
281
281
|
InstallPackagesTask.prototype.npmInstall = function (project, folderName) {
|
|
282
282
|
var outputPath = this.getOutputPath(project, folderName);
|
|
283
|
-
child_process_1.default.execSync('npm i', {
|
|
283
|
+
child_process_1.default.execSync('npm i --package-lock-only --verbose', {
|
|
284
284
|
cwd: outputPath,
|
|
285
285
|
// Uncomment if we want to silence
|
|
286
286
|
// stdio: 'pipe'
|