copyDist.js 617 B

12345678910111213141516171819202122
  1. const { exec } = require('child_process');
  2. const path = require('path');
  3. // 获取当前工作目录并生成 dist 路径
  4. const distPath = path.join(process.cwd(), 'dist');
  5. const targetPath = '\\\\192.168.0.152\\web\\shop\\nsadmin';
  6. // 构建 xcopy 命令
  7. const command = `xcopy "${distPath}" "${targetPath}" /E /H /Y`;
  8. // 执行 xcopy 命令
  9. exec(command, (error, stdout, stderr) => {
  10. if (error) {
  11. console.error(`执行错误: ${error.message}`);
  12. return;
  13. }
  14. if (stderr) {
  15. console.error(`错误输出: ${stderr}`);
  16. return;
  17. }
  18. console.log(`输出: ${stdout}`);
  19. });