viza 1.9.32 → 1.9.33
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.
|
@@ -24,7 +24,7 @@ export async function showRuntimeUsage(result) {
|
|
|
24
24
|
const values = usage.map((m) => {
|
|
25
25
|
const val = `${m.totalMinutes} min`;
|
|
26
26
|
if (m.month === latest?.month) {
|
|
27
|
-
return chalk.bold.
|
|
27
|
+
return chalk.bold.white(pad(val, 24));
|
|
28
28
|
}
|
|
29
29
|
return pad(val, 24);
|
|
30
30
|
}).join("");
|
|
@@ -46,7 +46,7 @@ export async function showRuntimeUsage(result) {
|
|
|
46
46
|
return null;
|
|
47
47
|
const text = `${m.month}: ${os.minutes} min`;
|
|
48
48
|
if (m.month === latest?.month) {
|
|
49
|
-
return chalk.bold.
|
|
49
|
+
return chalk.bold.white(text);
|
|
50
50
|
}
|
|
51
51
|
return chalk.gray(text);
|
|
52
52
|
}).filter(Boolean);
|
|
@@ -75,7 +75,7 @@ export async function showRuntimeUsage(result) {
|
|
|
75
75
|
const values = months.map((m) => {
|
|
76
76
|
const val = `${m.totalMinutes} min`;
|
|
77
77
|
if (m.month === latest?.month) {
|
|
78
|
-
return chalk.bold.
|
|
78
|
+
return chalk.bold.magentaBright(pad(val, 24));
|
|
79
79
|
}
|
|
80
80
|
return pad(val, 24);
|
|
81
81
|
}).join("");
|