mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-09-18 23:09:49 +02:00
12 lines
215 B
TypeScript
12 lines
215 B
TypeScript
import { execFileSync } from 'child_process';
|
|
|
|
export function generateLangium() {
|
|
execFileSync('pnpm', [
|
|
'--prefix',
|
|
`${process.cwd()}/packages/parser`,
|
|
'exec',
|
|
'langium',
|
|
'generate',
|
|
]);
|
|
}
|