feat(coding-agent): Expose edit-diff for extensions (#5756)

This commit is contained in:
Alexey Zaytsev
2026-06-18 10:14:39 -05:00
committed by GitHub
parent d0b46764b1
commit 2b46f38863
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,5 @@
/**
* Shared diff computation utilities for the edit tool.
* Used by both edit.ts (for execution) and tool-execution.ts (for preview rendering).
* Shared diff computation utilities for the edit and similar tools.
*/
import * as Diff from "diff";

View File

@@ -246,6 +246,7 @@ export {
type SkillFrontmatter,
} from "./core/skills.ts";
export { createSyntheticSourceInfo } from "./core/source-info.ts";
export { type EditDiffResult, generateDiffString, generateUnifiedPatch } from "./core/tools/edit-diff.ts";
// Tools
export {
type BashOperations,