mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-03 06:27:11 +01:00
fix: use JavaScript script for script runner
Switch from shell to JavaScript for script execution. Co-authored-by: Thomas Ruoff <111471+tomru@users.noreply.github.com>
This commit is contained in:
5
scripts/install.mjs
Normal file
5
scripts/install.mjs
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
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.');
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
cd /vercel/share/v0-project
|
|
||||||
npm install
|
|
||||||
Reference in New Issue
Block a user