dorkos 0.10.0 → 0.12.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
@@ -17988,12 +17988,12 @@ Examples:
17988
17988
  process.exit(0);
17989
17989
  }
17990
17990
  if (values.version) {
17991
- console.log("0.10.0");
17991
+ console.log("0.12.0");
17992
17992
  process.exit(0);
17993
17993
  }
17994
17994
  if (values["post-install-check"]) {
17995
17995
  checkClaude();
17996
- console.log(`dorkos ${"0.10.0"}`);
17996
+ console.log(`dorkos ${"0.12.0"}`);
17997
17997
  console.log("Installation verified.");
17998
17998
  process.exit(0);
17999
17999
  }
@@ -18094,7 +18094,7 @@ if (fs3.existsSync(envPath)) {
18094
18094
  await import("../server/index.js");
18095
18095
  var port = process.env.DORKOS_PORT || String(DEFAULT_PORT);
18096
18096
  console.log("");
18097
- console.log(` DorkOS v${"0.10.0"}`);
18097
+ console.log(` DorkOS v${"0.12.0"}`);
18098
18098
  console.log(` Local: http://localhost:${port}`);
18099
18099
  var nets = networkInterfaces();
18100
18100
  var networkUrl = null;
@@ -18150,9 +18150,9 @@ console.log("");
18150
18150
  }
18151
18151
  });
18152
18152
  }
18153
- checkForUpdate("0.10.0").then((latestVersion) => {
18153
+ checkForUpdate("0.12.0").then((latestVersion) => {
18154
18154
  if (latestVersion) {
18155
- const msg = `Update available: ${"0.10.0"} \u2192 ${latestVersion}`;
18155
+ const msg = `Update available: ${"0.12.0"} \u2192 ${latestVersion}`;
18156
18156
  const cmd = "Run npm install -g dorkos@latest to update";
18157
18157
  const width = Math.max(msg.length, cmd.length) + 6;
18158
18158
  const pad = (s2) => `\u2502 ${s2}${" ".repeat(width - s2.length - 6)} \u2502`;