gerson
2024-09-07 37179a65229455f540dc3ca62d31c4716e15d12d
1
2
3
4
5
6
7
8
9
const { copyFile ,checkCustomer,firstCustomerName} = require('./helper');
const { execSync } = require('child_process');
checkCustomer('npm run dev', firstCustomerName);
 
copyFile();
 
try {
    execSync('vite', { stdio: 'inherit' });
} catch (error) {}