@dreamtree-org/graphify 1.4.0 → 1.6.0
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/{chunk-QEB7A5KB.js → chunk-5Q4BCTMF.js} +116 -103
- package/dist/chunk-5Q4BCTMF.js.map +1 -0
- package/dist/{chunk-ZPB37LLQ.js → chunk-FZ23C67J.js} +2 -2
- package/dist/{chunk-6JLEILYF.js → chunk-N3VOEXK3.js} +32 -2
- package/dist/{chunk-6JLEILYF.js.map → chunk-N3VOEXK3.js.map} +1 -1
- package/dist/{chunk-7LTO76UD.js → chunk-OHN5UO6W.js} +2 -2
- package/dist/cli/index.cjs +19 -7
- package/dist/cli/index.cjs.map +1 -1
- package/dist/cli/index.js +4 -4
- package/dist/index.cjs +646 -181
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +229 -17
- package/dist/index.d.ts +229 -17
- package/dist/index.js +424 -4
- package/dist/index.js.map +1 -1
- package/dist/mcp/server.js +2 -2
- package/dist/mysql-DJMXLP3O.js +8 -0
- package/package.json +1 -1
- package/dist/chunk-QEB7A5KB.js.map +0 -1
- package/dist/mysql-EJ6XOWR4.js +0 -8
- /package/dist/{chunk-ZPB37LLQ.js.map → chunk-FZ23C67J.js.map} +0 -0
- /package/dist/{chunk-7LTO76UD.js.map → chunk-OHN5UO6W.js.map} +0 -0
- /package/dist/{mysql-EJ6XOWR4.js.map → mysql-DJMXLP3O.js.map} +0 -0
package/dist/cli/index.js
CHANGED
|
@@ -13,7 +13,7 @@ import {
|
|
|
13
13
|
runPipeline,
|
|
14
14
|
saveResult,
|
|
15
15
|
validateRules
|
|
16
|
-
} from "../chunk-
|
|
16
|
+
} from "../chunk-5Q4BCTMF.js";
|
|
17
17
|
import {
|
|
18
18
|
affectedBy,
|
|
19
19
|
buildContextPack,
|
|
@@ -25,11 +25,11 @@ import {
|
|
|
25
25
|
shortestPath,
|
|
26
26
|
testsForChangedFiles,
|
|
27
27
|
testsForNode
|
|
28
|
-
} from "../chunk-
|
|
28
|
+
} from "../chunk-OHN5UO6W.js";
|
|
29
29
|
import {
|
|
30
30
|
validateDsn,
|
|
31
31
|
validateUrl
|
|
32
|
-
} from "../chunk-
|
|
32
|
+
} from "../chunk-N3VOEXK3.js";
|
|
33
33
|
|
|
34
34
|
// src/cli/index.ts
|
|
35
35
|
import { execFile as execFile2 } from "child_process";
|
|
@@ -771,7 +771,7 @@ program.name("graphify").description("Turn a folder of code/docs/papers into a q
|
|
|
771
771
|
}
|
|
772
772
|
let extraExtractions;
|
|
773
773
|
if (options.mysql) {
|
|
774
|
-
const { extractMysql } = await import("../mysql-
|
|
774
|
+
const { extractMysql } = await import("../mysql-DJMXLP3O.js");
|
|
775
775
|
console.error(`Extracting MySQL schema from ${validateDsn(options.mysql).safeDisplay} ...`);
|
|
776
776
|
extraExtractions = [await extractMysql(options.mysql)];
|
|
777
777
|
}
|