@ganakailabs/cloudeval-cli 0.26.4 → 0.26.5
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/{App-SM7XELZQ.js → App-OO33TPPB.js} +2 -2
- package/dist/{Banner-T3BVRZV3.js → Banner-VMUZ3OSJ.js} +2 -2
- package/dist/{chunk-HEJJ6LSM.js → chunk-72IJSEJN.js} +1 -1
- package/dist/{chunk-AJJXSTOE.js → chunk-MBRSB26X.js} +1 -1
- package/dist/cli.js +7 -6
- package/package.json +1 -1
- package/sbom.spdx.json +1 -1
|
@@ -38,10 +38,10 @@ import {
|
|
|
38
38
|
} from "./chunk-3MIP274G.js";
|
|
39
39
|
import {
|
|
40
40
|
Banner
|
|
41
|
-
} from "./chunk-
|
|
41
|
+
} from "./chunk-72IJSEJN.js";
|
|
42
42
|
import {
|
|
43
43
|
CLI_VERSION
|
|
44
|
-
} from "./chunk-
|
|
44
|
+
} from "./chunk-MBRSB26X.js";
|
|
45
45
|
import {
|
|
46
46
|
raisedButtonStyle,
|
|
47
47
|
terminalTheme
|
package/dist/cli.js
CHANGED
|
@@ -36,7 +36,7 @@ import {
|
|
|
36
36
|
} from "./chunk-3MIP274G.js";
|
|
37
37
|
import {
|
|
38
38
|
CLI_VERSION
|
|
39
|
-
} from "./chunk-
|
|
39
|
+
} from "./chunk-MBRSB26X.js";
|
|
40
40
|
|
|
41
41
|
// src/runtime/prepareInk.ts
|
|
42
42
|
import fs from "fs";
|
|
@@ -2485,10 +2485,11 @@ var displayNumber = (value, fallback = "not available") => {
|
|
|
2485
2485
|
return number === void 0 ? fallback : String(number);
|
|
2486
2486
|
};
|
|
2487
2487
|
var formatMoney = (amount, currency, fallback = "not available") => {
|
|
2488
|
-
|
|
2488
|
+
const numericAmount = numberFrom(amount);
|
|
2489
|
+
if (numericAmount === void 0) {
|
|
2489
2490
|
return fallback;
|
|
2490
2491
|
}
|
|
2491
|
-
return
|
|
2492
|
+
return currency ? `${numericAmount} ${currency}` : String(numericAmount);
|
|
2492
2493
|
};
|
|
2493
2494
|
var formatValidation = (validation) => {
|
|
2494
2495
|
const policyFailed = displayNumber(
|
|
@@ -14967,7 +14968,7 @@ program.command("tui").description("Open the CloudEval Terminal UI").option(
|
|
|
14967
14968
|
const { assertSecureBaseUrl } = await import("./dist-QLN52XKY.js");
|
|
14968
14969
|
const [{ render }, { App }] = await Promise.all([
|
|
14969
14970
|
import("ink"),
|
|
14970
|
-
import("./App-
|
|
14971
|
+
import("./App-OO33TPPB.js")
|
|
14971
14972
|
]);
|
|
14972
14973
|
const baseUrl = await resolveBaseUrl(options, command);
|
|
14973
14974
|
assertSecureBaseUrl(baseUrl);
|
|
@@ -15025,7 +15026,7 @@ program.command("chat").description("Start an interactive chat session").option(
|
|
|
15025
15026
|
const { assertSecureBaseUrl } = await import("./dist-QLN52XKY.js");
|
|
15026
15027
|
const [{ render }, { App }] = await Promise.all([
|
|
15027
15028
|
import("ink"),
|
|
15028
|
-
import("./App-
|
|
15029
|
+
import("./App-OO33TPPB.js")
|
|
15029
15030
|
]);
|
|
15030
15031
|
const baseUrl = await resolveBaseUrl(options, command);
|
|
15031
15032
|
assertSecureBaseUrl(baseUrl);
|
|
@@ -15779,7 +15780,7 @@ Error: ${errorMsg}
|
|
|
15779
15780
|
program.command("banner").description("Preview the startup banner and terminal capabilities").action(async () => {
|
|
15780
15781
|
const { render } = await import("ink");
|
|
15781
15782
|
const BannerPreview = React.lazy(async () => ({
|
|
15782
|
-
default: (await import("./Banner-
|
|
15783
|
+
default: (await import("./Banner-VMUZ3OSJ.js")).Banner
|
|
15783
15784
|
}));
|
|
15784
15785
|
render(
|
|
15785
15786
|
/* @__PURE__ */ jsx(React.Suspense, { fallback: null, children: /* @__PURE__ */ jsx(BannerPreview, { disable: false }) })
|
package/package.json
CHANGED
package/sbom.spdx.json
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
{
|
|
15
15
|
"SPDXID": "SPDXRef-Package-CloudEval-CLI",
|
|
16
16
|
"name": "CloudEval CLI",
|
|
17
|
-
"versionInfo": "0.26.
|
|
17
|
+
"versionInfo": "0.26.5",
|
|
18
18
|
"downloadLocation": "https://github.com/ganakailabs/cloudeval-cli",
|
|
19
19
|
"filesAnalyzed": false,
|
|
20
20
|
"licenseConcluded": "LicenseRef-CloudEval-CLI",
|