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) <noreply@anthropic.com>
This commit is contained in:
Till JS 2026-03-28 20:52:07 +01:00
parent 105a7b041f
commit 9ff2e9123f

View file

@ -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';