@vm0/cli 3.2.0 → 3.2.1
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 +7 -4
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -12824,7 +12824,8 @@ var ClaudeEventParser = class {
|
|
|
12824
12824
|
static parseVm0StartEvent(event) {
|
|
12825
12825
|
return {
|
|
12826
12826
|
type: "vm0_start",
|
|
12827
|
-
timestamp: new Date(
|
|
12827
|
+
timestamp: /* @__PURE__ */ new Date(),
|
|
12828
|
+
// Use client receive time for consistent elapsed calculation
|
|
12828
12829
|
data: {
|
|
12829
12830
|
runId: event.runId,
|
|
12830
12831
|
agentComposeId: event.agentComposeId,
|
|
@@ -12841,7 +12842,8 @@ var ClaudeEventParser = class {
|
|
|
12841
12842
|
static parseVm0ResultEvent(event) {
|
|
12842
12843
|
return {
|
|
12843
12844
|
type: "vm0_result",
|
|
12844
|
-
timestamp: new Date(
|
|
12845
|
+
timestamp: /* @__PURE__ */ new Date(),
|
|
12846
|
+
// Use client receive time for consistent elapsed calculation
|
|
12845
12847
|
data: {
|
|
12846
12848
|
runId: event.runId,
|
|
12847
12849
|
checkpointId: event.checkpointId,
|
|
@@ -12855,7 +12857,8 @@ var ClaudeEventParser = class {
|
|
|
12855
12857
|
static parseVm0ErrorEvent(event) {
|
|
12856
12858
|
return {
|
|
12857
12859
|
type: "vm0_error",
|
|
12858
|
-
timestamp: new Date(
|
|
12860
|
+
timestamp: /* @__PURE__ */ new Date(),
|
|
12861
|
+
// Use client receive time for consistent elapsed calculation
|
|
12859
12862
|
data: {
|
|
12860
12863
|
runId: event.runId,
|
|
12861
12864
|
error: event.error,
|
|
@@ -14127,7 +14130,7 @@ var artifactCommand = new Command10().name("artifact").description("Manage cloud
|
|
|
14127
14130
|
|
|
14128
14131
|
// src/index.ts
|
|
14129
14132
|
var program = new Command11();
|
|
14130
|
-
program.name("vm0").description("VM0 CLI - A modern build tool").version("3.2.
|
|
14133
|
+
program.name("vm0").description("VM0 CLI - A modern build tool").version("3.2.1");
|
|
14131
14134
|
program.command("hello").description("Say hello from the App").action(() => {
|
|
14132
14135
|
console.log(chalk11.blue("Welcome to the VM0 CLI!"));
|
|
14133
14136
|
console.log(chalk11.green(`Core says: ${FOO}`));
|