mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 23:13:02 +01:00
7 lines
237 B
TypeScript
7 lines
237 B
TypeScript
import { run } from '../../scripts/lib/index';
|
|
|
|
export async function buildAmdMinDev() {
|
|
const rootPath = __dirname;
|
|
await run('npx vite build --mode development', { cwd: rootPath });
|
|
await run('npx vite build', { cwd: rootPath });
|
|
}
|