diff --git a/src/tools/hashline-edit/edit-operations.test.ts b/src/tools/hashline-edit/edit-operations.test.ts index ce573da4c..1940b9e46 100644 --- a/src/tools/hashline-edit/edit-operations.test.ts +++ b/src/tools/hashline-edit/edit-operations.test.ts @@ -1,6 +1,6 @@ import { describe, expect, it } from "bun:test" -import { applyHashlineEdits, applyInsertAfter, applyReplaceLines, applySetLine } from "./edit-operations" -import { applyAppend, applyPrepend } from "./edit-operation-primitives" +import { applyHashlineEdits } from "./edit-operations" +import { applyAppend, applyInsertAfter, applyPrepend, applyReplaceLines, applySetLine } from "./edit-operation-primitives" import { computeLineHash } from "./hash-computation" import type { HashlineEdit } from "./types" diff --git a/src/tools/hashline-edit/edit-operations.ts b/src/tools/hashline-edit/edit-operations.ts index 8558b51db..fae662d15 100644 --- a/src/tools/hashline-edit/edit-operations.ts +++ b/src/tools/hashline-edit/edit-operations.ts @@ -88,9 +88,3 @@ export function applyHashlineEdits(content: string, edits: HashlineEdit[]): stri return applyHashlineEditsWithReport(content, edits).content } -export { - applySetLine, - applyReplaceLines, - applyInsertAfter, - applyInsertBefore, -} from "./edit-operation-primitives" diff --git a/src/tools/hashline-edit/index.ts b/src/tools/hashline-edit/index.ts index 97a0ba7b2..b38d63d35 100644 --- a/src/tools/hashline-edit/index.ts +++ b/src/tools/hashline-edit/index.ts @@ -16,9 +16,5 @@ export type { export { NIBBLE_STR, HASHLINE_DICT, HASHLINE_REF_PATTERN, HASHLINE_OUTPUT_PATTERN } from "./constants" export { applyHashlineEdits, - applyInsertAfter, - applyInsertBefore, - applyReplaceLines, - applySetLine, } from "./edit-operations" export { createHashlineEditTool } from "./tools"