mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 19:41:09 +02:00
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:
parent
105a7b041f
commit
9ff2e9123f
1 changed files with 16 additions and 0 deletions
|
|
@ -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';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue