fix: use bun run build to resolve ng via package scripts
continuous-integration/drone/push Build is failing

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Rafał Miczek
2026-02-13 20:36:30 +01:00
co-authored by Cursor
parent 78e2caf16f
commit 0ea7dc77de
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -5,4 +5,4 @@
*/
require('dotenv').config();
const { execSync } = require('child_process');
execSync('bunx ng build', { stdio: 'inherit' });
execSync('bun run build', { stdio: 'inherit', cwd: process.cwd(), shell: true });