onveloz 0.0.0-beta.27 → 0.0.0-beta.29

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.
@@ -0,0 +1,3 @@
1
+ import { n as runAgent } from "./index.mjs";
2
+
3
+ export { runAgent };
@@ -1,4 +1,4 @@
1
- import { a as statusLabels, i as TERMINAL_STATUSES, l as info, n as isHiddenMessage, o as getClient, r as parseBuildLine, t as cleanDisplayLine, u as success } from "./index.mjs";
1
+ import { a as parseBuildLine, c as getClient, g as success, h as info, i as isHiddenMessage, o as TERMINAL_STATUSES, r as cleanDisplayLine, s as statusLabels } from "./index.mjs";
2
2
  import chalk from "chalk";
3
3
  import { useEffect, useRef, useState } from "react";
4
4
  import { Box, Static, Text, render, useApp } from "ink";
@@ -304,7 +304,7 @@ function buildStepsToStages(steps) {
304
304
  }
305
305
  const match = step.title.match(STAGE_TITLE_RE);
306
306
  if (!match) {
307
- if (step.title && !/^\[(?:depot|internal)\]/i.test(step.title)) displayOrder.push({
307
+ if (step.title && !/^\[internal\]/i.test(step.title)) displayOrder.push({
308
308
  kind: "extra",
309
309
  step
310
310
  });