Build scripts dont need to be compiled anymore (#5149)

This commit is contained in:
Henning Dieterichs 2025-12-17 12:21:11 +01:00 committed by GitHub
parent 09eede5b26
commit 165cfcb101
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -81,7 +81,6 @@ async function buildAndTest() {
// Run checks and compilation // Run checks and compilation
await run('npm run gulp hygiene', { cwd: vscodePath }); await run('npm run gulp hygiene', { cwd: vscodePath });
await run('npm run valid-layers-check', { cwd: vscodePath }); await run('npm run valid-layers-check', { cwd: vscodePath });
await run('npm run compile', { cwd: join(vscodePath, 'build') });
await run('npm run eslint', { cwd: vscodePath }); await run('npm run eslint', { cwd: vscodePath });
await run('npm run monaco-compile-check', { cwd: vscodePath }); await run('npm run monaco-compile-check', { cwd: vscodePath });
await run('npm run --max_old_space_size=4095 compile', { cwd: vscodePath }); await run('npm run --max_old_space_size=4095 compile', { cwd: vscodePath });