@hasna/testers 0.0.16 → 0.0.17
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/cli/index.js +8960 -89
- package/dist/db/database.d.ts.map +1 -1
- package/dist/index.js +8936 -67
- package/dist/lib/config.d.ts +1 -1
- package/dist/lib/config.d.ts.map +1 -1
- package/dist/lib/paths.d.ts +8 -0
- package/dist/lib/paths.d.ts.map +1 -0
- package/dist/mcp/index.js +9423 -59
- package/dist/server/index.js +9019 -150
- package/package.json +2 -1
package/dist/lib/config.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import type { TestersConfig } from "../types/index.js";
|
|
|
4
4
|
*/
|
|
5
5
|
export declare function getDefaultConfig(): TestersConfig;
|
|
6
6
|
/**
|
|
7
|
-
* Loads configuration from ~/.testers/config.json (if it exists),
|
|
7
|
+
* Loads configuration from ~/.hasna/testers/config.json (if it exists),
|
|
8
8
|
* merges with defaults, and applies environment variable overrides.
|
|
9
9
|
*/
|
|
10
10
|
export declare function loadConfig(): TestersConfig;
|
package/dist/lib/config.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../src/lib/config.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../src/lib/config.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,aAAa,EAAe,MAAM,mBAAmB,CAAC;AAOpE;;GAEG;AACH,wBAAgB,gBAAgB,IAAI,aAAa,CAiBhD;AAED;;;GAGG;AACH,wBAAgB,UAAU,IAAI,aAAa,CAiD1C;AAED;;;;;GAKG;AACH,wBAAgB,YAAY,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,CAKrD"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Get the global testers data directory.
|
|
3
|
+
* New default: ~/.hasna/testers/
|
|
4
|
+
* Legacy fallback: ~/.testers/ (if it exists and new dir doesn't)
|
|
5
|
+
* Env override: HASNA_TESTERS_DIR or TESTERS_DIR
|
|
6
|
+
*/
|
|
7
|
+
export declare function getTestersDir(): string;
|
|
8
|
+
//# sourceMappingURL=paths.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"paths.d.ts","sourceRoot":"","sources":["../../src/lib/paths.ts"],"names":[],"mappings":"AAOA;;;;;GAKG;AACH,wBAAgB,aAAa,IAAI,MAAM,CAkBtC"}
|