@clickview/ship-it 0.0.4-dev.3 → 0.0.4-dev.4
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.
|
@@ -89,11 +89,12 @@ var BumpPackagesTask = /** @class */ (function () {
|
|
|
89
89
|
return [4 /*yield*/, this.getLernaCommand(options)];
|
|
90
90
|
case 2:
|
|
91
91
|
lernaVersionCmd = _a.sent();
|
|
92
|
+
console.log("Found lerna command ".concat(lernaVersionCmd, " but running dev versioning script for testing purposes"));
|
|
92
93
|
if (!lernaVersionCmd) {
|
|
93
94
|
utils_1.Logger.logError('Something went wrong while trying to detect which versioning script to run with Lerna.');
|
|
94
95
|
return [2 /*return*/, false];
|
|
95
96
|
}
|
|
96
|
-
(0, child_process_1.execSync)(
|
|
97
|
+
(0, child_process_1.execSync)("lerna version prepatch --preid dev ".concat(SHARED_LERNA_OPTIONS));
|
|
97
98
|
utils_1.Logger.logSuccess('Successfully executed Lerna versioning command.');
|
|
98
99
|
return [2 /*return*/, true];
|
|
99
100
|
}
|