ctxloom-pro 1.0.26 → 1.0.27
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/index.js +3 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -613,7 +613,7 @@ try {
|
|
|
613
613
|
} catch {
|
|
614
614
|
}
|
|
615
615
|
var args = process.argv.slice(2);
|
|
616
|
-
var ctxloomVersion = "1.0.
|
|
616
|
+
var ctxloomVersion = "1.0.27".length > 0 ? "1.0.27" : "dev";
|
|
617
617
|
if (args.includes("--version") || args.includes("-v")) {
|
|
618
618
|
process.stdout.write(`ctxloom ${ctxloomVersion}
|
|
619
619
|
`);
|
|
@@ -924,11 +924,12 @@ async function main() {
|
|
|
924
924
|
`);
|
|
925
925
|
const indexStart = Date.now();
|
|
926
926
|
const result = await indexDirectory(root, (file, i, total) => {
|
|
927
|
+
if (!isTTY) return;
|
|
927
928
|
const trimmed = file.length > 60 ? "\u2026" + file.slice(-59) : file;
|
|
928
929
|
process.stdout.write(`\r ${style.dim(`[${i}/${total}]`)} ${style.dim(trimmed)}\x1B[K`);
|
|
929
930
|
});
|
|
930
931
|
const indexMs = Date.now() - indexStart;
|
|
931
|
-
process.stdout.write("\r\x1B[K");
|
|
932
|
+
if (isTTY) process.stdout.write("\r\x1B[K");
|
|
932
933
|
const errLabel = result.errors === 0 ? style.dim("0 errors") : style.warn(`${result.errors} error${result.errors === 1 ? "" : "s"}`);
|
|
933
934
|
process.stdout.write(` ${success(`Indexed ${style.bold(String(result.indexed))} files`)} ${style.dim("\xB7")} ${errLabel} ${style.dim(`\xB7 ${(indexMs / 1e3).toFixed(1)}s`)}
|
|
934
935
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ctxloom-pro",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.27",
|
|
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",
|