mermaid/.build/generateLangium.ts
Reda Al Sulais 963dd75c39 chore(parser): build parser package using esbuild and vite
Co-authored-by: Sidharth Vinod <sidharthv96@gmail.com>
2023-08-20 17:16:12 +03:00

6 lines
165 B
TypeScript

import { execSync } from 'child_process';
export function generateLangium() {
execSync(`pnpm --prefix ${process.cwd()}/packages/parser exec langium generate`);
}