viza 1.7.21 → 1.7.24

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.
@@ -8,11 +8,9 @@ import { dispatchIntentAndWait } from "../../../../core/dispatch.js";
8
8
  */
9
9
  const TARGET_TEAMS = {
10
10
  "dev": [
11
- "viza-admin",
12
11
  "viza-super"
13
12
  ],
14
13
  "prod": [
15
- "viza-admin",
16
14
  "viza-super"
17
15
  ]
18
16
  };
@@ -8,6 +8,7 @@ import { dispatchIntentAndWait } from "../../../../core/dispatch.js";
8
8
  */
9
9
  const TARGET_TEAMS = {
10
10
  "dev": [
11
+ "viza-manager",
11
12
  "viza-admin",
12
13
  "viza-super"
13
14
  ],
@@ -8,11 +8,9 @@ import { dispatchIntentAndWait } from "../../../../core/dispatch.js";
8
8
  */
9
9
  const TARGET_TEAMS = {
10
10
  "dev": [
11
- "viza-admin",
12
11
  "viza-super"
13
12
  ],
14
13
  "prod": [
15
- "viza-admin",
16
14
  "viza-super"
17
15
  ]
18
16
  };
@@ -1,6 +1,7 @@
1
1
  import { dispatcherDispatch, } from "@vizamodo/viza-dispatcher";
2
2
  import chalk from "chalk";
3
3
  import { startSpinner, stopSpinner } from "../ui/spinner.js";
4
+ import { renderLog } from "../ui/logRenderer.js";
4
5
  import { showDispatchBanner } from "../ui/banner.js";
5
6
  import { getCliVersion, checkForCliUpdateSoft } from "./version.js";
6
7
  import { resolveExecutionMode } from "./resolveExecutionMode.js";
@@ -18,10 +19,10 @@ function maybeRenderLog(result, policy, commandType) {
18
19
  if (result.status === "success" && policy === "hide") {
19
20
  return;
20
21
  }
21
- // if (result.logBuffer) {
22
- // renderLog(result.logBuffer, { status: result.status });
23
- // return;
24
- // }
22
+ if (result.logBuffer) {
23
+ renderLog(result.logBuffer, { status: result.status });
24
+ return;
25
+ }
25
26
  // Log artifact not available (likely GitHub log archive not ready yet)
26
27
  const title = chalk.yellow("\n⚠️ Execution finished but the workflow log is not ready yet.");
27
28
  const reason = chalk.dim(" GitHub often needs a few seconds after completion before the log archive can be downloaded.");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "viza",
3
- "version": "1.7.21",
3
+ "version": "1.7.24",
4
4
  "type": "module",
5
5
  "description": "Viza unified command line interface",
6
6
  "bin": {
@@ -22,7 +22,7 @@
22
22
  "chalk": "^5.6.2",
23
23
  "clipboardy": "^5.3.1",
24
24
  "commander": "^14.0.3",
25
- "figlet": "^1.10.0",
25
+ "figlet": "^1.11.0",
26
26
  "open": "^11.0.0",
27
27
  "prompts": "^2.4.2"
28
28
  },