From 9ff2e9123fa1046053e08ff1c0efc641253d211e Mon Sep 17 00:00:00 2001 From: Till JS Date: Sat, 28 Mar 2026 20:52:07 +0100 Subject: [PATCH] fix(help): re-export schemas from content.ts for loader.ts compatibility loader.ts imports schemas from content.ts but they were defined in schemas.ts. Add re-exports to fix Rollup build resolution. Co-Authored-By: Claude Opus 4.6 (1M context) --- packages/help/src/content.ts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages/help/src/content.ts b/packages/help/src/content.ts index 2bdba593f..c69c7d04e 100644 --- a/packages/help/src/content.ts +++ b/packages/help/src/content.ts @@ -150,3 +150,19 @@ export interface MergeContentOptions { /** If true, app-specific content replaces central content with same ID */ overrideById?: boolean; } + +// Re-export schemas for backward compatibility +export { + faqFrontmatterSchema, + featureFrontmatterSchema, + shortcutsFrontmatterSchema, + gettingStartedFrontmatterSchema, + changelogFrontmatterSchema, + contactFrontmatterSchema, + type FAQFrontmatter, + type FeatureFrontmatter, + type ShortcutsFrontmatter, + type GettingStartedFrontmatter, + type ChangelogFrontmatter, + type ContactFrontmatter, +} from './schemas';