dorkos 0.21.0 → 0.23.0

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/bin/cli.js CHANGED
@@ -18922,12 +18922,12 @@ Examples:
18922
18922
  process.exit(0);
18923
18923
  }
18924
18924
  if (values.version) {
18925
- console.log("0.21.0");
18925
+ console.log("0.23.0");
18926
18926
  process.exit(0);
18927
18927
  }
18928
18928
  if (values["post-install-check"]) {
18929
18929
  checkClaude();
18930
- console.log(`dorkos ${"0.21.0"}`);
18930
+ console.log(`dorkos ${"0.23.0"}`);
18931
18931
  console.log("Installation verified.");
18932
18932
  process.exit(0);
18933
18933
  }
@@ -19037,7 +19037,7 @@ await import("../server/index.js");
19037
19037
  var port = process.env.DORKOS_PORT || String(DEFAULT_PORT);
19038
19038
  var localUrl = `http://localhost:${port}`;
19039
19039
  console.log("");
19040
- console.log(` DorkOS v${"0.21.0"}`);
19040
+ console.log(` DorkOS v${"0.23.0"}`);
19041
19041
  console.log(` Local: ${link(localUrl, localUrl)}`);
19042
19042
  var nets = networkInterfaces();
19043
19043
  var networkUrl = null;
@@ -19108,9 +19108,9 @@ if (process.stdin.isTTY) {
19108
19108
  }
19109
19109
  });
19110
19110
  }
19111
- checkForUpdate("0.21.0").then((latestVersion) => {
19111
+ checkForUpdate("0.23.0").then((latestVersion) => {
19112
19112
  if (latestVersion) {
19113
- const msg = `Update available: ${"0.21.0"} \u2192 ${latestVersion}`;
19113
+ const msg = `Update available: ${"0.23.0"} \u2192 ${latestVersion}`;
19114
19114
  const cmd = "Run npm install -g dorkos@latest to update";
19115
19115
  const width = Math.max(msg.length, cmd.length) + 6;
19116
19116
  const pad = (s2) => `\u2502 ${s2}${" ".repeat(width - s2.length - 6)} \u2502`;