mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-03 06:27:11 +01:00
Switch from shell to JavaScript for script execution. Co-authored-by: Thomas Ruoff <111471+tomru@users.noreply.github.com>
6 lines
224 B
JavaScript
6 lines
224 B
JavaScript
import { execSync } from 'child_process';
|
|
|
|
console.log('Running npm install to update dependencies...');
|
|
execSync('npm install', { stdio: 'inherit', cwd: process.cwd() });
|
|
console.log('npm install completed successfully.');
|