@skill-map/cli 0.38.0 → 0.39.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/cli.js +1217 -1133
- package/dist/cli.js.map +1 -1
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/kernel/index.d.ts +13 -13
- package/dist/kernel/index.js +3 -2
- package/dist/kernel/index.js.map +1 -1
- package/dist/ui/{chunk-O5N7UH37.js → chunk-AALYQ3RG.js} +1 -1
- package/dist/ui/{chunk-KKOZFBXQ.js → chunk-JECPBFFX.js} +1 -1
- package/dist/ui/{chunk-QZM2G474.js → chunk-LGLLRAJ6.js} +1 -1
- package/dist/ui/{chunk-NTM2J2WO.js → chunk-NHI5UPNK.js} +1 -1
- package/dist/ui/{chunk-4CDTW64C.js → chunk-PVVKVGJ6.js} +1 -1
- package/dist/ui/{chunk-5AZ5S6JB.js → chunk-SKA7ZFUX.js} +1 -1
- package/dist/ui/{chunk-Z4LANJFK.js → chunk-VDMXHCXR.js} +1 -1
- package/dist/ui/{chunk-AAR3Y55J.js → chunk-VZIYRREA.js} +1 -1
- package/dist/ui/chunk-XRDZZC5F.js +123 -0
- package/dist/ui/{chunk-47MG5XH2.js → chunk-YPO2DTMO.js} +8 -8
- package/dist/ui/{chunk-G5CKBDBB.js → chunk-ZYIKNMFV.js} +1 -1
- package/dist/ui/index.html +1 -1
- package/dist/ui/main-TYWMNAII.js +2 -0
- package/package.json +2 -2
- package/dist/ui/chunk-4XEJUDPL.js +0 -123
- package/dist/ui/main-EO5QNLE4.js +0 -2
package/dist/index.js
CHANGED
|
@@ -101,7 +101,7 @@ import cl100k_base from "js-tiktoken/ranks/cl100k_base";
|
|
|
101
101
|
// package.json
|
|
102
102
|
var package_default = {
|
|
103
103
|
name: "@skill-map/cli",
|
|
104
|
-
version: "0.
|
|
104
|
+
version: "0.39.0",
|
|
105
105
|
description: "skill-map reference implementation \u2014 kernel + CLI + adapters.",
|
|
106
106
|
license: "MIT",
|
|
107
107
|
type: "module",
|
|
@@ -1426,7 +1426,8 @@ function recomputeLinkCounts(nodes, links) {
|
|
|
1426
1426
|
for (const link of links) {
|
|
1427
1427
|
const source = byPath2.get(link.source);
|
|
1428
1428
|
if (source) source.linksOutCount += 1;
|
|
1429
|
-
const
|
|
1429
|
+
const targetKey = link.resolvedTarget ?? link.target;
|
|
1430
|
+
const target = byPath2.get(targetKey);
|
|
1430
1431
|
if (target) target.linksInCount += 1;
|
|
1431
1432
|
}
|
|
1432
1433
|
}
|