fix: replace child_process with cross-spawn

This commit is contained in:
Haileyesus
2026-04-10 16:37:47 +03:00
parent a8dab0edcf
commit 11733918e5
15 changed files with 17 additions and 17 deletions

View File

@@ -12,7 +12,7 @@ import express from 'express';
import fs from 'fs';
import path from 'path';
import { promises as fsPromises } from 'fs';
import { spawn } from 'child_process';
import { spawn } from 'cross-spawn';
import { fileURLToPath } from 'url';
import { dirname } from 'path';
import os from 'os';