codestrate 0.6.0 → 0.6.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/constants.d.ts +1 -1
- package/dist/constants.js +1 -1
- package/package.json +1 -1
package/dist/constants.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type CIConfig } from "./types.js";
|
|
2
2
|
export declare const SERVER_NAME = "coding-intelligence-mcp-server";
|
|
3
|
-
export declare const SERVER_VERSION = "0.
|
|
3
|
+
export declare const SERVER_VERSION = "0.6.0";
|
|
4
4
|
export declare const DEFAULT_STORE_PATH: string;
|
|
5
5
|
export declare const INDEX_FILE = "index.json";
|
|
6
6
|
export declare const MEMORY_FILE = "memory.json";
|
package/dist/constants.js
CHANGED
|
@@ -3,7 +3,7 @@ import { join, resolve } from "path";
|
|
|
3
3
|
import { existsSync, readFileSync } from "fs";
|
|
4
4
|
// ─── Server identity ──────────────────────────────────────
|
|
5
5
|
export const SERVER_NAME = "coding-intelligence-mcp-server";
|
|
6
|
-
export const SERVER_VERSION = "0.
|
|
6
|
+
export const SERVER_VERSION = "0.6.0";
|
|
7
7
|
// ─── Default paths ────────────────────────────────────────
|
|
8
8
|
export const DEFAULT_STORE_PATH = join(homedir(), ".ci-mcp", "store");
|
|
9
9
|
export const INDEX_FILE = "index.json";
|
package/package.json
CHANGED