fix(scripts): keep fixture discovery private

This commit is contained in:
Tianyi Cui
2026-07-26 23:49:16 +08:00
parent a20cf88928
commit 9e04034862

View File

@@ -95,7 +95,7 @@ export function canonicalSessionFixture(content: string, label = '<session-fixtu
* @param root - repository root.
* @returns Stable repository-relative paths.
*/
export function discoverJsonlFiles(root: string): string[] {
function discoverJsonlFiles(root: string): string[] {
return execFileSync(
'git',
['ls-files', '-z', '--cached', '--others', '--exclude-standard', '--', '*.jsonl'],