@vm0/cli 3.8.1 → 3.8.2
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/index.js +3 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -12954,7 +12954,8 @@ var EventRenderer = class {
|
|
|
12954
12954
|
if (input && typeof input === "object") {
|
|
12955
12955
|
for (const [key, value] of Object.entries(input)) {
|
|
12956
12956
|
if (value !== void 0 && value !== null) {
|
|
12957
|
-
|
|
12957
|
+
const displayValue = typeof value === "object" ? JSON.stringify(value, null, 2) : String(value);
|
|
12958
|
+
console.log(` ${key}: ${chalk3.gray(displayValue)}`);
|
|
12958
12959
|
}
|
|
12959
12960
|
}
|
|
12960
12961
|
}
|
|
@@ -14581,7 +14582,7 @@ var cookCommand = new Command15().name("cook").description("One-click agent prep
|
|
|
14581
14582
|
|
|
14582
14583
|
// src/index.ts
|
|
14583
14584
|
var program = new Command16();
|
|
14584
|
-
program.name("vm0").description("VM0 CLI - A modern build tool").version("3.8.
|
|
14585
|
+
program.name("vm0").description("VM0 CLI - A modern build tool").version("3.8.2");
|
|
14585
14586
|
program.command("hello").description("Say hello from the App").action(() => {
|
|
14586
14587
|
console.log(chalk15.blue("Welcome to the VM0 CLI!"));
|
|
14587
14588
|
console.log(chalk15.green(`Core says: ${FOO}`));
|