gitwarren 0.1.11 → 0.1.12

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
@@ -10301,7 +10301,7 @@ function cmdQuote(value) {
10301
10301
  if (value.includes('"')) throw new Error(`a Windows path cannot contain a quote: ${value}`);
10302
10302
  return `"${value}"`;
10303
10303
  }
10304
- const APP_VERSION = "0.1.11";
10304
+ const APP_VERSION = "0.1.12";
10305
10305
  const REMOTE_ROOT = "$HOME/.gitwarren";
10306
10306
  const runOnHost = (route2, options) => {
10307
10307
  switch (route2.kind) {
@@ -26869,7 +26869,7 @@ Connection: close\r
26869
26869
  }
26870
26870
  };
26871
26871
  }
26872
- const VERSION$1 = "0.1.11";
26872
+ const VERSION$1 = "0.1.12";
26873
26873
  function isWebBuild(directory) {
26874
26874
  return fs.existsSync(node_path.join(directory, "index.html")) && !fs.existsSync(node_path.join(directory, "main.ts"));
26875
26875
  }
@@ -27619,7 +27619,7 @@ function runService(argv) {
27619
27619
  return true;
27620
27620
  }
27621
27621
  }
27622
- const VERSION = "0.1.11";
27622
+ const VERSION = "0.1.12";
27623
27623
  const USAGE = `gitwarren - code review for your own git repositories, in a browser tab
27624
27624
 
27625
27625
  Run it now
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gitwarren",
3
- "version": "0.1.11",
3
+ "version": "0.1.12",
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",
@@ -8,6 +8,7 @@
8
8
  "bugs": "https://github.com/klarluft/gitwarren-app/issues",
9
9
  "license": "GPL-3.0-or-later",
10
10
  "author": { "name": "Klarluft B.V.", "email": "contact@klarluft.com", "url": "https://klarluft.com" },
11
+ "mcpName": "io.github.klarluft/gitwarren",
11
12
  "type": "module",
12
13
  "bin": { "gitwarren": "bin/gitwarren.mjs" },
13
14
  "files": ["bin", "lib", "drizzle", "web", "README.md"],