@hizliemre/horse-code 0.2.0 → 0.3.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.
- package/dist/{app-2GPGCDX6.js → app-4WN37LZ3.js} +282 -57
- package/dist/{chunk-7JMWPTJ5.js → chunk-27F44PBD.js} +221 -1363
- package/dist/{chunk-23CLQ2KO.js → chunk-2WXG35EM.js} +19 -15
- package/dist/{chunk-LNW557IO.js → chunk-372X5HHU.js} +2 -2
- package/dist/{chunk-5ZV42XGJ.js → chunk-3ACDNDCG.js} +1 -1
- package/dist/{chunk-XEGQT5EN.js → chunk-4M6LXNG2.js} +1 -1
- package/dist/{chunk-6OSEQOYY.js → chunk-6S4WWQMN.js} +2 -2
- package/dist/{chunk-LLL7QWXB.js → chunk-BFIZMM4G.js} +6 -6
- package/dist/chunk-CYLPQWIF.js +214 -0
- package/dist/chunk-G45RWL7S.js +289 -0
- package/dist/{chunk-AE36LLL2.js → chunk-JLWQCA7B.js} +2 -209
- package/dist/{chunk-KKWZBZYK.js → chunk-JR2JLRE3.js} +26 -4
- package/dist/{run-P6ZYL5JL.js → chunk-QJYVZPLG.js} +133 -389
- package/dist/{chunk-UGESK765.js → chunk-UTHLEW5V.js} +1 -1
- package/dist/chunk-YULQ4URQ.js +1220 -0
- package/dist/{chunk-KAGKX2YT.js → chunk-ZPJP2VH5.js} +10 -1
- package/dist/cli.js +586 -104
- package/dist/{fix-JOIXQFVP.js → fix-QCL5AITT.js} +10 -8
- package/dist/{ongoing-WHYXPW24.js → ongoing-6NUSPSCV.js} +3 -2
- package/dist/{project-graph-5HNPRFQG.js → project-graph-OGIM2B33.js} +1 -1
- package/dist/run-V5ZLZ3LS.js +274 -0
- package/dist/{save-skills-X7U3KCPU.js → save-skills-NPKTYNAF.js} +2 -1
- package/dist/{trace-X6TU3AG6.js → trace-UVMZZRA5.js} +1 -1
- package/dist/{trace-adopt-URECQWJV.js → trace-adopt-7HWELJFE.js} +1 -1
- package/dist/{trace-run-7U4WJZ3V.js → trace-run-CZWEZ4R6.js} +8 -4
- package/dist/{triage-FCYHD2AQ.js → triage-IFCVL5MA.js} +7 -6
- package/dist/{verify-6SC4I77M.js → verify-HWZBTK5X.js} +16 -12
- package/package.json +1 -1
- package/dist/chunk-MRZVA5JB.js +0 -163
|
@@ -298,7 +298,16 @@ var LOCAL_ONLY = [
|
|
|
298
298
|
// The graph itself: rebuilt per checkout, inherited by copy, and unmergeable by construction — see above.
|
|
299
299
|
"graphify-out/graph.json",
|
|
300
300
|
// …and the commit it was built at, which describes that local copy and travels with it.
|
|
301
|
-
"graphify-out/.graph-commit.json"
|
|
301
|
+
"graphify-out/.graph-commit.json",
|
|
302
|
+
/**
|
|
303
|
+
* The AST cache — which this list's own heading has always described and never actually excluded.
|
|
304
|
+
*
|
|
305
|
+
* "an AST cache keyed by local mtimes" is the sentence written above these rules, and no rule matched it.
|
|
306
|
+
* Measured on a real project: 711 files and 7.8 MB sitting untracked and un-ignored, so `git add -A` after
|
|
307
|
+
* a `/graph build` swept the whole cache into the commit. Keyed by this checkout's mtimes, it is worthless
|
|
308
|
+
* to anyone else and rebuilt whenever it is missing.
|
|
309
|
+
*/
|
|
310
|
+
"graphify-out/cache/"
|
|
302
311
|
];
|
|
303
312
|
var NESTED_CHECKOUTS = [".claude/worktrees/", ".horsecode/worktrees/"];
|
|
304
313
|
function openDirectory(text, dir) {
|