ctxloom-pro 1.0.13 → 1.0.14
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.
|
@@ -11328,7 +11328,7 @@ async function startDashboard(options) {
|
|
|
11328
11328
|
}
|
|
11329
11329
|
const clientDist = path35.join(__dirname2, "../dashboard/client");
|
|
11330
11330
|
app.use(express.static(clientDist));
|
|
11331
|
-
app.get(
|
|
11331
|
+
app.get(/.*/, (_req, res) => {
|
|
11332
11332
|
res.sendFile(path35.join(clientDist, "index.html"));
|
|
11333
11333
|
});
|
|
11334
11334
|
app.listen(port, () => {
|
package/dist/index.js
CHANGED
|
@@ -512,7 +512,7 @@ try {
|
|
|
512
512
|
} catch {
|
|
513
513
|
}
|
|
514
514
|
var args = process.argv.slice(2);
|
|
515
|
-
var ctxloomVersion = "1.0.
|
|
515
|
+
var ctxloomVersion = "1.0.14".length > 0 ? "1.0.14" : "dev";
|
|
516
516
|
if (args.includes("--version") || args.includes("-v")) {
|
|
517
517
|
process.stdout.write(`ctxloom ${ctxloomVersion}
|
|
518
518
|
`);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ctxloom-pro",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.14",
|
|
4
4
|
"description": "ctxloom — The Universal Code Context Engine. A local-first MCP server providing intelligent code context via hybrid Vector + AST + Graph search with Skeletonization (92% token reduction).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|