onveloz 0.0.0-beta.28 → 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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { a as
|
|
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 && !/^\[
|
|
307
|
+
if (step.title && !/^\[internal\]/i.test(step.title)) displayOrder.push({
|
|
308
308
|
kind: "extra",
|
|
309
309
|
step
|
|
310
310
|
});
|