@arkhera30/cli 0.5.1 → 0.5.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/dist/index.js CHANGED
@@ -2294,6 +2294,15 @@ var updateCommand = new Command7("update").description("Update Horus to the late
2294
2294
  snapshotSpinner.warn("Could not save snapshot (update will proceed)");
2295
2295
  console.log(chalk7.dim(error.message));
2296
2296
  }
2297
+ const composeSpinner = ora6("Updating compose configuration...").start();
2298
+ try {
2299
+ const runtimeName = runtime.name === "podman" ? "podman" : "docker";
2300
+ installComposeFile(config, runtimeName);
2301
+ composeSpinner.succeed("Compose configuration updated");
2302
+ } catch (error) {
2303
+ composeSpinner.warn("Could not update compose configuration \u2014 using existing file");
2304
+ console.log(chalk7.dim(error.message));
2305
+ }
2297
2306
  console.log("");
2298
2307
  console.log(chalk7.bold("Pulling latest images..."));
2299
2308
  try {
package/guides/index.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "schema_version": 1,
3
- "built_at": "2026-04-30T03:37:49.113Z",
3
+ "built_at": "2026-04-30T03:48:46.120Z",
4
4
  "guide_count": 5,
5
5
  "guides": [
6
6
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arkhera30/cli",
3
- "version": "0.5.1",
3
+ "version": "0.5.2",
4
4
  "description": "CLI for managing the Horus AI development stack",
5
5
  "type": "module",
6
6
  "bin": {