mirror of
https://github.com/voideditor/void
synced 2026-05-24 09:58:23 +00:00
fix(build): replace cross-spawn with Node built-in child_process.spawn
cross-spawn was failing to resolve during Docker builds on Render, causing buildreact step to exit with status 1. Since the build runs on Linux, the cross-platform spawn wrapper is unnecessary. https://claude.ai/code/session_01UgRm1eNr4jVDQ4tVK2LXoR
This commit is contained in:
parent
fc7a9cbb6a
commit
06d3c742d5
1 changed files with 1 additions and 2 deletions
|
|
@ -3,8 +3,7 @@
|
|||
* Licensed under the MIT License. See LICENSE.txt for more information.
|
||||
*--------------------------------------------------------------------------------------*/
|
||||
|
||||
import { execSync } from 'child_process';
|
||||
import { spawn } from 'cross-spawn'
|
||||
import { execSync, spawn } from 'child_process';
|
||||
// Added lines below
|
||||
import fs from 'fs';
|
||||
import path from 'path';
|
||||
|
|
|
|||
Loading…
Reference in a new issue