wujingjing
2024-09-12 c958fa45270736e0d8eaf07ed04519e392a0ce6a
1
2
3
4
5
6
7
8
9
10
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) {}