refactor(packages): extract comment-checker-core package

This commit is contained in:
YeonGyu-Kim
2026-05-21 01:17:04 +09:00
parent 3b303e79f4
commit 7028c1f40a
14 changed files with 562 additions and 355 deletions
@@ -0,0 +1,30 @@
export {
extractApplyPatchEdits,
getApplyPatchMetadataFiles,
getString,
isRecord,
joinPatchLines,
makeAccumulator,
parseApplyPatchRequests,
readApplyPatchMetadataFiles,
} from "./apply-patch-edits"
export { resolveCommentCheckerBinary, runCommentChecker } from "./runner"
export type {
ApplyPatchAccumulator,
ApplyPatchFileMetadata,
CheckResult,
CheckerEdit,
CommentFilter,
CommentInfo,
CommentType,
FileComments,
FilterResult,
HookInput,
PendingCall,
ResolveCommentCheckerBinaryInput,
RunCommentCheckerInput,
RunCommentCheckerOptions,
SpawnFn,
SpawnProcess,
SpawnSignal,
} from "./types"