@cryptiklemur/lattice 5.1.0 → 5.1.1
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 +2 -2
- package/package.json +1 -1
package/dist/server/daemon.js
CHANGED
|
@@ -428,11 +428,11 @@ export async function startDaemon(portOverride, tlsOverride) {
|
|
|
428
428
|
log.server("Vite dev server attached (middleware mode, HMR on same port)");
|
|
429
429
|
}
|
|
430
430
|
else if (clientDir && existsSync(clientDir)) {
|
|
431
|
-
app.use(express.static(clientDir));
|
|
431
|
+
app.use(express.static(clientDir, { dotfiles: "allow" }));
|
|
432
432
|
app.get("/{*path}", function (_req, res) {
|
|
433
433
|
var indexPath = join(clientDir, "index.html");
|
|
434
434
|
if (existsSync(indexPath)) {
|
|
435
|
-
res.sendFile(indexPath);
|
|
435
|
+
res.sendFile(indexPath, { dotfiles: "allow" });
|
|
436
436
|
}
|
|
437
437
|
else {
|
|
438
438
|
res.status(404).send("Not found");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cryptiklemur/lattice",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.1",
|
|
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>",
|