@justmpm/ai-tool 0.7.9 → 0.7.10
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.
|
@@ -1942,6 +1942,10 @@ function detectFileAreas(filePath, config) {
|
|
|
1942
1942
|
const normalizedPath = filePath.replace(/\\/g, "/");
|
|
1943
1943
|
const matches = [];
|
|
1944
1944
|
const autoDetect = config.settings?.autoDetect !== false;
|
|
1945
|
+
if (filePath.includes("useAuth.ts")) {
|
|
1946
|
+
console.error(`[DEBUG] autoDetect for ${filePath}:`, autoDetect);
|
|
1947
|
+
console.error(`[DEBUG] config.settings:`, JSON.stringify(config.settings));
|
|
1948
|
+
}
|
|
1945
1949
|
for (const [areaId, areaConfig] of Object.entries(config.areas)) {
|
|
1946
1950
|
if (matchesAreaConfig(normalizedPath, areaConfig)) {
|
|
1947
1951
|
matches.push({ area: areaId, priority: 200, source: "config" });
|
package/dist/cli.js
CHANGED
|
@@ -13,7 +13,7 @@ import {
|
|
|
13
13
|
impact,
|
|
14
14
|
map,
|
|
15
15
|
suggest
|
|
16
|
-
} from "./chunk-
|
|
16
|
+
} from "./chunk-MWM2INVY.js";
|
|
17
17
|
|
|
18
18
|
// src/cli.ts
|
|
19
19
|
import { resolve } from "path";
|
|
@@ -108,7 +108,7 @@ async function main() {
|
|
|
108
108
|
}
|
|
109
109
|
}
|
|
110
110
|
if (flags.mcp) {
|
|
111
|
-
const { startMcpServer } = await import("./server-
|
|
111
|
+
const { startMcpServer } = await import("./server-IBNLXRUS.js");
|
|
112
112
|
await startMcpServer();
|
|
113
113
|
return;
|
|
114
114
|
}
|
package/dist/index.js
CHANGED
package/package.json
CHANGED