@swmansion/argent 0.19.1-next.2 → 0.19.1-next.3
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-cmds.mjs +1 -1
- package/dist/tool-server.cjs +596 -162
- package/package.json +1 -1
- package/skills/argent-create-flow/SKILL.md +16 -1
package/dist/cli-cmds.mjs
CHANGED
|
@@ -9704,7 +9704,7 @@ function renderFailedSteps(report) {
|
|
|
9704
9704
|
for (const s of report.steps) {
|
|
9705
9705
|
if (s.kind === "echo") continue;
|
|
9706
9706
|
n2++;
|
|
9707
|
-
if (s.status !== "fail" && s.status !== "error") continue;
|
|
9707
|
+
if (s.status !== "fail" && s.status !== "error" && !s.warning) continue;
|
|
9708
9708
|
lines.push(renderStepLine(s, n2, report.flow));
|
|
9709
9709
|
if (s.warning) lines.push(renderUnderStepLine(s, n2, `\u26A0 ${s.warning}`));
|
|
9710
9710
|
if (s.artifacts && typeof s.artifacts === "object") {
|