@justmpm/ai-tool 3.20.0 → 3.20.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.
|
@@ -3885,7 +3885,7 @@ function cacheGraph(cwd, graph) {
|
|
|
3885
3885
|
}
|
|
3886
3886
|
function getCachedGraph(cwd) {
|
|
3887
3887
|
const validationStatus = getCacheValidationStatus(cwd);
|
|
3888
|
-
if (validationStatus
|
|
3888
|
+
if (validationStatus !== "valid") {
|
|
3889
3889
|
return null;
|
|
3890
3890
|
}
|
|
3891
3891
|
const cached = readCache(cwd, GRAPH_FILE);
|
|
@@ -3899,7 +3899,7 @@ function cacheMapResult(cwd, result) {
|
|
|
3899
3899
|
}
|
|
3900
3900
|
function getCachedMapResult(cwd) {
|
|
3901
3901
|
const validationStatus = getCacheValidationStatus(cwd);
|
|
3902
|
-
if (validationStatus
|
|
3902
|
+
if (validationStatus !== "valid") {
|
|
3903
3903
|
return null;
|
|
3904
3904
|
}
|
|
3905
3905
|
return readCache(cwd, MAP_FILE, mapResultSchema);
|
|
@@ -3909,7 +3909,7 @@ function cacheDeadResult(cwd, result) {
|
|
|
3909
3909
|
}
|
|
3910
3910
|
function getCachedDeadResult(cwd) {
|
|
3911
3911
|
const validationStatus = getCacheValidationStatus(cwd);
|
|
3912
|
-
if (validationStatus
|
|
3912
|
+
if (validationStatus !== "valid") {
|
|
3913
3913
|
return null;
|
|
3914
3914
|
}
|
|
3915
3915
|
return readCache(cwd, DEAD_FILE, deadResultSchema);
|
package/dist/cli.js
CHANGED
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
depsInfo,
|
|
5
5
|
depsSearch,
|
|
6
6
|
describe
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-IC74XLRN.js";
|
|
8
8
|
import {
|
|
9
9
|
VERSION,
|
|
10
10
|
area,
|
|
@@ -20,7 +20,7 @@ import {
|
|
|
20
20
|
impact,
|
|
21
21
|
map,
|
|
22
22
|
suggest
|
|
23
|
-
} from "./chunk-
|
|
23
|
+
} from "./chunk-XDFC3IL7.js";
|
|
24
24
|
|
|
25
25
|
// src/cli.ts
|
|
26
26
|
import { resolve } from "path";
|
|
@@ -131,7 +131,7 @@ async function main() {
|
|
|
131
131
|
}
|
|
132
132
|
}
|
|
133
133
|
if (flags.mcp) {
|
|
134
|
-
const { startMcpServer } = await import("./server-
|
|
134
|
+
const { startMcpServer } = await import("./server-V3N7JTNN.js");
|
|
135
135
|
await startMcpServer();
|
|
136
136
|
return;
|
|
137
137
|
}
|
package/dist/index.js
CHANGED
|
@@ -3,7 +3,7 @@ import {
|
|
|
3
3
|
depsInfo,
|
|
4
4
|
depsSearch,
|
|
5
5
|
describe
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-IC74XLRN.js";
|
|
7
7
|
import {
|
|
8
8
|
VERSION,
|
|
9
9
|
area,
|
|
@@ -19,7 +19,7 @@ import {
|
|
|
19
19
|
map,
|
|
20
20
|
recoveryHint,
|
|
21
21
|
suggest
|
|
22
|
-
} from "./chunk-
|
|
22
|
+
} from "./chunk-XDFC3IL7.js";
|
|
23
23
|
|
|
24
24
|
// src/mcp/server.ts
|
|
25
25
|
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@justmpm/ai-tool",
|
|
3
|
-
"version": "3.20.
|
|
3
|
+
"version": "3.20.1",
|
|
4
4
|
"description": "Ferramenta de análise de dependências e impacto para projetos TypeScript/JavaScript. Usa Skott + Knip internamente. Inclui busca por descrição, integração Git e testes inteligentes.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"dependency-analysis",
|