const { copyFile,customerList ,checkCustomer,changeBranch} = require('./helper'); const { execSync } = require('child_process'); const customer = customerList[0]?.split(':')[0]; checkCustomer('npm run dev', customer); changeBranch(); copyFile('npm run dev'); try { execSync('vite', { stdio: 'inherit' }); } catch (error) {}