From 8a5811bf84a51d14890339c734a6cae85926f940 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Thu, 21 May 2026 16:03:33 +0900 Subject: [PATCH] chore(comment-checker): drop dead apply-patch-edits re-export shim src/hooks/comment-checker/apply-patch-edits.ts was already a pure re-export over @oh-my-opencode/comment-checker-core after the core extraction landed. Every importer now reaches into the package directly, so the shim has no remaining call sites and can be removed. Verified: rg "comment-checker/apply-patch-edits" src/ packages/ returns no matches. --- .../comment-checker/apply-patch-edits.ts | 21 ------------------- 1 file changed, 21 deletions(-) delete mode 100644 src/hooks/comment-checker/apply-patch-edits.ts diff --git a/src/hooks/comment-checker/apply-patch-edits.ts b/src/hooks/comment-checker/apply-patch-edits.ts deleted file mode 100644 index 9f4c69858..000000000 --- a/src/hooks/comment-checker/apply-patch-edits.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { - extractApplyPatchEdits, - getApplyPatchMetadataFiles, - getString, - isRecord, - joinPatchLines, - makeAccumulator, - parseApplyPatchRequests, - readApplyPatchMetadataFiles, -} from "@oh-my-opencode/comment-checker-core" - -export { - extractApplyPatchEdits, - getApplyPatchMetadataFiles, - getString, - isRecord, - joinPatchLines, - makeAccumulator, - parseApplyPatchRequests, - readApplyPatchMetadataFiles, -}