mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-28 07:03:17 +08:00
6 lines
165 B
TypeScript
6 lines
165 B
TypeScript
|
import { execSync } from 'child_process';
|
||
|
|
||
|
export function generateLangium() {
|
||
|
execSync(`pnpm --prefix ${process.cwd()}/packages/parser exec langium generate`);
|
||
|
}
|