@vm0/cli 4.8.0 → 4.8.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.
Files changed (2) hide show
  1. package/index.js +3 -3
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -15350,7 +15350,7 @@ var pullCommand = new Command5().name("pull").description("Pull cloud files to l
15350
15350
  );
15351
15351
  } else {
15352
15352
  const error43 = await response.json();
15353
- throw new Error(error43.error || "Download failed");
15353
+ throw new Error(error43.error?.message || "Download failed");
15354
15354
  }
15355
15355
  process.exit(1);
15356
15356
  }
@@ -15653,7 +15653,7 @@ var pullCommand2 = new Command9().name("pull").description("Pull cloud artifact
15653
15653
  );
15654
15654
  } else {
15655
15655
  const error43 = await response.json();
15656
- throw new Error(error43.error || "Download failed");
15656
+ throw new Error(error43.error?.message || "Download failed");
15657
15657
  }
15658
15658
  process.exit(1);
15659
15659
  }
@@ -16396,7 +16396,7 @@ function handleError(error43, runId) {
16396
16396
 
16397
16397
  // src/index.ts
16398
16398
  var program = new Command17();
16399
- program.name("vm0").description("VM0 CLI - A modern build tool").version("4.8.0");
16399
+ program.name("vm0").description("VM0 CLI - A modern build tool").version("4.8.1");
16400
16400
  program.command("info").description("Display environment information").action(async () => {
16401
16401
  console.log(chalk16.cyan("System Information:"));
16402
16402
  console.log(`Node Version: ${process.version}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vm0/cli",
3
- "version": "4.8.0",
3
+ "version": "4.8.1",
4
4
  "description": "CLI application",
5
5
  "repository": {
6
6
  "type": "git",