fix:separate out tidy-tree and elk from deafult loaders

on-behalf-of: @Mermaid-Chart <hello@mermaidchart.com>
This commit is contained in:
darshanr0107
2025-08-04 19:40:34 +05:30
parent c95c64139d
commit e2ce0450c1
4 changed files with 3 additions and 85 deletions

View File

@@ -2,7 +2,7 @@ import type { LayoutLoaderDefinition } from 'mermaid';
const loader = async () => await import(`./render.js`);
const layouts: LayoutLoaderDefinition[] = [
const tidyTreeLayout: LayoutLoaderDefinition[] = [
{
name: 'tidy-tree',
loader,
@@ -10,4 +10,4 @@ const layouts: LayoutLoaderDefinition[] = [
},
];
export default layouts;
export default tidyTreeLayout;