gitwarren 0.1.8-beta.1 → 0.1.8

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/lib/gitwarren.cjs CHANGED
@@ -10242,7 +10242,7 @@ function cmdQuote(value) {
10242
10242
  if (value.includes('"')) throw new Error(`a Windows path cannot contain a quote: ${value}`);
10243
10243
  return `"${value}"`;
10244
10244
  }
10245
- const APP_VERSION = "0.1.8-beta.1";
10245
+ const APP_VERSION = "0.1.8";
10246
10246
  const REMOTE_ROOT = "$HOME/.gitwarren";
10247
10247
  const runOnHost = (route2, options) => {
10248
10248
  switch (route2.kind) {
@@ -26868,7 +26868,7 @@ Connection: close\r
26868
26868
  }
26869
26869
  };
26870
26870
  }
26871
- const VERSION$1 = "0.1.8-beta.1";
26871
+ const VERSION$1 = "0.1.8";
26872
26872
  function isWebBuild(directory) {
26873
26873
  return fs.existsSync(node_path.join(directory, "index.html")) && !fs.existsSync(node_path.join(directory, "main.ts"));
26874
26874
  }
@@ -27572,7 +27572,7 @@ function runService(argv) {
27572
27572
  return true;
27573
27573
  }
27574
27574
  }
27575
- const VERSION = "0.1.8-beta.1";
27575
+ const VERSION = "0.1.8";
27576
27576
  const USAGE = `gitwarren - local-only code review, from the command line
27577
27577
 
27578
27578
  gitwarren serve serve the web view on loopback and print its URL
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gitwarren",
3
- "version": "0.1.8-beta.1",
3
+ "version": "0.1.8",
4
4
  "description": "Code review for your own machines and your own agents, served on loopback. No Electron, no account.",
5
5
  "keywords": ["code-review", "git", "diff", "mcp", "local-first", "ssh", "wsl", "tailscale", "self-hosted"],
6
6
  "homepage": "https://github.com/klarluft/gitwarren-app",