@vm0/cli 5.9.0 → 5.9.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 +5 -3
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -6947,7 +6947,7 @@ async function autoPullArtifact(runOutput, artifactDir) {
|
|
|
6947
6947
|
var cookCmd = new Command17().name("cook").description("One-click agent preparation and execution from vm0.yaml");
|
|
6948
6948
|
cookCmd.argument("[prompt]", "Prompt for the agent").option("-y, --yes", "Skip confirmation prompts").option("--debug-no-mock-claude").action(
|
|
6949
6949
|
async (prompt, options) => {
|
|
6950
|
-
const shouldExit = await checkAndUpgrade("5.9.
|
|
6950
|
+
const shouldExit = await checkAndUpgrade("5.9.1", prompt);
|
|
6951
6951
|
if (shouldExit) {
|
|
6952
6952
|
process.exit(0);
|
|
6953
6953
|
}
|
|
@@ -9819,7 +9819,9 @@ var listCommand5 = new Command36().name("list").description("List all credential
|
|
|
9819
9819
|
console.log(chalk37.dim("No credentials found."));
|
|
9820
9820
|
console.log();
|
|
9821
9821
|
console.log("To add a credential:");
|
|
9822
|
-
console.log(
|
|
9822
|
+
console.log(
|
|
9823
|
+
chalk37.cyan(" vm0 experimental-credential set MY_API_KEY <value>")
|
|
9824
|
+
);
|
|
9823
9825
|
return;
|
|
9824
9826
|
}
|
|
9825
9827
|
console.log(chalk37.bold("Credentials:"));
|
|
@@ -9945,7 +9947,7 @@ var credentialCommand = new Command39().name("experimental-credential").descript
|
|
|
9945
9947
|
|
|
9946
9948
|
// src/index.ts
|
|
9947
9949
|
var program = new Command40();
|
|
9948
|
-
program.name("vm0").description("VM0 CLI - A modern build tool").version("5.9.
|
|
9950
|
+
program.name("vm0").description("VM0 CLI - A modern build tool").version("5.9.1");
|
|
9949
9951
|
program.command("info").description("Display environment information").action(async () => {
|
|
9950
9952
|
console.log(chalk40.bold("System Information:"));
|
|
9951
9953
|
console.log(`Node Version: ${process.version}`);
|