@cryptiklemur/lattice 1.46.1 → 1.46.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cryptiklemur/lattice",
3
- "version": "1.46.1",
3
+ "version": "1.46.3",
4
4
  "description": "Multi-machine agentic dashboard for Claude Code. Monitor sessions, manage MCP servers and skills, orchestrate across mesh-networked nodes.",
5
5
  "license": "MIT",
6
6
  "author": "Aaron Scherer <me@aaronscherer.me>",
@@ -122,7 +122,7 @@ function compileBinary(target: string, version: string): void {
122
122
  "bun", "build", "--compile",
123
123
  "--target=bun-" + target,
124
124
  "--outfile=" + outFile,
125
- "--define=process.env.LATTICE_VERSION=\"'" + version + "'\"",
125
+ '--define=process.env.LATTICE_VERSION="' + version + '"',
126
126
  join(ROOT, "server/src/index.ts"),
127
127
  ].join(" ");
128
128
 
@@ -30,6 +30,7 @@ export function startDiscovery(nodeId: string, name: string, port: number): void
30
30
  type: "lattice",
31
31
  port: port,
32
32
  protocol: "tcp",
33
+ probe: false,
33
34
  txt: {
34
35
  nodeId: nodeId,
35
36
  name: name,