baro-ai 0.22.0 → 0.22.1
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/dist/cli.mjs +5 -1
- package/dist/cli.mjs.map +1 -1
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -8955,6 +8955,8 @@ ${prompt}`;
|
|
|
8955
8955
|
)
|
|
8956
8956
|
);
|
|
8957
8957
|
const summary = {
|
|
8958
|
+
success,
|
|
8959
|
+
abortReason,
|
|
8958
8960
|
completedStories: [...this.globalCompleted],
|
|
8959
8961
|
failedStories: [...this.globalFailed],
|
|
8960
8962
|
droppedStories: [...this.globalDropped],
|
|
@@ -9933,9 +9935,11 @@ async function orchestrate(config) {
|
|
|
9933
9935
|
emit({
|
|
9934
9936
|
type: "done",
|
|
9935
9937
|
total_time_secs: summary.totalDurationSecs,
|
|
9938
|
+
success: summary.success,
|
|
9939
|
+
abort_reason: summary.abortReason ?? void 0,
|
|
9936
9940
|
stats: {
|
|
9937
9941
|
stories_completed: summary.completedStories.length,
|
|
9938
|
-
stories_skipped:
|
|
9942
|
+
stories_skipped: summary.failedStories.length + summary.droppedStories.length,
|
|
9939
9943
|
total_commits: 0,
|
|
9940
9944
|
files_created: filesCreated,
|
|
9941
9945
|
files_modified: filesModified
|