180d16b977
BREAKING: OpenCode plugin loader calls all exports as functions. Exporting non-function values (schemas, constants, types) causes TypeError. Changes: - Remove OhMyOpenCodeConfigSchema export from root index.ts - Replace 'export *' with explicit function exports in hooks/index.ts - Remove 'export *' from comment-checker/index.ts
6 lines
344 B
TypeScript
6 lines
344 B
TypeScript
export { createTodoContinuationEnforcer } from "./todo-continuation-enforcer"
|
|
export { createContextWindowMonitorHook } from "./context-window-monitor"
|
|
export { createSessionNotification } from "./session-notification"
|
|
export { createSessionRecoveryHook } from "./session-recovery"
|
|
export { createCommentCheckerHooks } from "./comment-checker"
|