@cryptiklemur/lattice 5.0.3 → 5.0.5
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/server/daemon.js +20 -20
- package/package.json +1 -1
package/dist/server/daemon.js
CHANGED
|
@@ -17,30 +17,30 @@ import { verifyPassphrase, generateSessionToken, addSession, isValidSession } fr
|
|
|
17
17
|
import { ensureCerts } from "./tls.js";
|
|
18
18
|
import { log } from "./logger.js";
|
|
19
19
|
import { detectIdeProjectName } from "./handlers/settings.js";
|
|
20
|
-
import "./handlers/session";
|
|
21
|
-
import "./handlers/chat";
|
|
22
|
-
import "./handlers/attachment";
|
|
20
|
+
import "./handlers/session.js";
|
|
21
|
+
import "./handlers/chat.js";
|
|
22
|
+
import "./handlers/attachment.js";
|
|
23
23
|
import { loadInterruptedSessions, cleanupClientPermissions, cleanupClientElicitations, getActiveStreamCountForProject } from "./project/sdk-bridge.js";
|
|
24
24
|
import { runWarmup, isWarmupComplete, getWarmupModels, getWarmupAccountInfo, getWarmupRateLimits } from "./project/warmup.js";
|
|
25
25
|
import { clearActiveSession } from "./handlers/chat.js";
|
|
26
26
|
import { clearActiveProject } from "./handlers/fs.js";
|
|
27
27
|
import { clearClientRemoteNode } from "./ws/router.js";
|
|
28
|
-
import "./handlers/fs";
|
|
29
|
-
import "./handlers/terminal";
|
|
30
|
-
import "./handlers/settings";
|
|
31
|
-
import "./handlers/project-settings";
|
|
32
|
-
import "./handlers/mesh";
|
|
33
|
-
import "./handlers/loop";
|
|
34
|
-
import "./handlers/scheduler";
|
|
35
|
-
import "./handlers/notes";
|
|
36
|
-
import "./handlers/skills";
|
|
37
|
-
import "./handlers/memory";
|
|
38
|
-
import "./handlers/editor";
|
|
39
|
-
import "./handlers/analytics";
|
|
40
|
-
import "./handlers/bookmarks";
|
|
41
|
-
import "./handlers/plugins";
|
|
42
|
-
import "./handlers/update";
|
|
43
|
-
import "./handlers/themes";
|
|
28
|
+
import "./handlers/fs.js";
|
|
29
|
+
import "./handlers/terminal.js";
|
|
30
|
+
import "./handlers/settings.js";
|
|
31
|
+
import "./handlers/project-settings.js";
|
|
32
|
+
import "./handlers/mesh.js";
|
|
33
|
+
import "./handlers/loop.js";
|
|
34
|
+
import "./handlers/scheduler.js";
|
|
35
|
+
import "./handlers/notes.js";
|
|
36
|
+
import "./handlers/skills.js";
|
|
37
|
+
import "./handlers/memory.js";
|
|
38
|
+
import "./handlers/editor.js";
|
|
39
|
+
import "./handlers/analytics.js";
|
|
40
|
+
import "./handlers/bookmarks.js";
|
|
41
|
+
import "./handlers/plugins.js";
|
|
42
|
+
import "./handlers/update.js";
|
|
43
|
+
import "./handlers/themes.js";
|
|
44
44
|
import { startScheduler } from "./features/scheduler.js";
|
|
45
45
|
import { loadNotes } from "./features/sticky-notes.js";
|
|
46
46
|
import { startPeriodicUpdateCheck, getCachedUpdateInfo } from "./update-checker.js";
|
|
@@ -411,7 +411,7 @@ export async function startDaemon(portOverride) {
|
|
|
411
411
|
var httpServer = tlsOptions
|
|
412
412
|
? createHttpsServer(tlsOptions, app)
|
|
413
413
|
: createHttpServer(app);
|
|
414
|
-
var isDev = process.env.NODE_ENV
|
|
414
|
+
var isDev = process.env.NODE_ENV === "development";
|
|
415
415
|
if (isDev) {
|
|
416
416
|
var { createServer: createViteServer } = await import("vite");
|
|
417
417
|
var vite = await createViteServer({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cryptiklemur/lattice",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.5",
|
|
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>",
|