@vm0/cli 4.16.0 → 4.16.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 +3 -3
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -16264,7 +16264,7 @@ async function generateEnvPlaceholders(missingVars, envFilePath) {
|
|
|
16264
16264
|
}
|
|
16265
16265
|
}
|
|
16266
16266
|
var cookCommand = new Command13().name("cook").description("One-click agent preparation and execution from vm0.yaml").argument("[prompt]", "Prompt for the agent").action(async (prompt) => {
|
|
16267
|
-
const shouldExit = await checkAndUpgrade("4.16.
|
|
16267
|
+
const shouldExit = await checkAndUpgrade("4.16.1", prompt);
|
|
16268
16268
|
if (shouldExit) {
|
|
16269
16269
|
process.exit(0);
|
|
16270
16270
|
}
|
|
@@ -16420,7 +16420,7 @@ var cookCommand = new Command13().name("cook").description("One-click agent prep
|
|
|
16420
16420
|
console.log();
|
|
16421
16421
|
console.log(chalk15.blue("Pulling updated artifact..."));
|
|
16422
16422
|
try {
|
|
16423
|
-
await execVm0Command(["artifact", "pull"], {
|
|
16423
|
+
await execVm0Command(["artifact", "pull", serverVersion], {
|
|
16424
16424
|
cwd: artifactDir,
|
|
16425
16425
|
silent: true
|
|
16426
16426
|
});
|
|
@@ -17150,7 +17150,7 @@ var scopeCommand = new Command22().name("scope").description("Manage your scope
|
|
|
17150
17150
|
|
|
17151
17151
|
// src/index.ts
|
|
17152
17152
|
var program = new Command23();
|
|
17153
|
-
program.name("vm0").description("VM0 CLI - A modern build tool").version("4.16.
|
|
17153
|
+
program.name("vm0").description("VM0 CLI - A modern build tool").version("4.16.1");
|
|
17154
17154
|
program.command("info").description("Display environment information").action(async () => {
|
|
17155
17155
|
console.log(chalk23.cyan("System Information:"));
|
|
17156
17156
|
console.log(`Node Version: ${process.version}`);
|