uses rollup to bundle monaco-editor's monaco.d.ts (#5033)

* uses rollup to bundle monaco-editor's monaco.d.ts

* Adds missing await
This commit is contained in:
Henning Dieterichs 2025-10-09 21:26:17 +02:00 committed by GitHub
parent 298ad9e43d
commit a59f6c8a72
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 1428 additions and 422 deletions

View file

@ -4,4 +4,5 @@ export async function buildAmdMinDev() {
const rootPath = __dirname;
await run('npx vite build --mode development', { cwd: rootPath });
await run('npx vite build', { cwd: rootPath });
await run('npx rollup -c rollup-types.config.mjs', { cwd: rootPath });
}