@vizamodo/viza-cli 1.4.8 → 1.4.12
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/bin/viza.js
CHANGED
|
@@ -23,7 +23,7 @@ program
|
|
|
23
23
|
.version(getCliVersion())
|
|
24
24
|
// Global Options
|
|
25
25
|
.option("--status", "Show status only (no execution)")
|
|
26
|
-
.option("--
|
|
26
|
+
.option("--remove-log", "Remove execution logs after completion", false)
|
|
27
27
|
.option("--self-hosted", "Use self-hosted runner (viza-builder)", false);
|
|
28
28
|
program
|
|
29
29
|
.command("bootstrap")
|
|
@@ -50,7 +50,7 @@ export async function loginAwsCommand(options) {
|
|
|
50
50
|
targetEnv: env,
|
|
51
51
|
allowedTeams,
|
|
52
52
|
selfHosted: options.selfHosted === true,
|
|
53
|
-
keepLog: options.
|
|
53
|
+
keepLog: options.removeLog !== true,
|
|
54
54
|
flowGates: {
|
|
55
55
|
secrets: false,
|
|
56
56
|
encVars: false,
|
package/dist/src/ui/banner.js
CHANGED
|
@@ -41,7 +41,7 @@ export function showBanner(opts) {
|
|
|
41
41
|
const { title, subtitle, color = "cyanBright", runner, meta } = opts;
|
|
42
42
|
process.stdout.write("\u001b[2J\u001b[3J\u001b[H");
|
|
43
43
|
const font = opts.env === "prod"
|
|
44
|
-
? "
|
|
44
|
+
? "Georgia11"
|
|
45
45
|
: opts.env === "dev"
|
|
46
46
|
? "Big"
|
|
47
47
|
: "Standard";
|