Browse Source

打包自动化部署指令

wzy 4 months ago
parent
commit
e1bdd043c1
2 changed files with 23 additions and 0 deletions
  1. 1 0
      package.json
  2. 22 0
      public/js/copyDist.js

+ 1 - 0
package.json

@@ -7,6 +7,7 @@
     "dev": "vue-cli-service serve",
     "build:prod": "vue-cli-service build",
     "build:stage": "vue-cli-service build --mode staging",
+    "build:deploy": "vue-cli-service build --mode staging && node public/js/copyDist.js",
     "preview": "node build/index.js --preview",
     "svgo": "svgo -f src/icons/svg --config=src/icons/svgo.yml",
     "lint": "eslint --fix --ext .js,.vue src",

+ 22 - 0
public/js/copyDist.js

@@ -0,0 +1,22 @@
+const { exec } = require('child_process');
+const path = require('path');
+
+// 获取当前工作目录并生成 dist 路径
+const distPath = path.join(process.cwd(), 'dist');
+const targetPath = '\\\\192.168.0.152\\web\\shop\\nsadmin';
+
+// 构建 xcopy 命令
+const command = `xcopy "${distPath}" "${targetPath}" /E /H /Y`;
+
+// 执行 xcopy 命令
+exec(command, (error, stdout, stderr) => {
+    if (error) {
+        console.error(`执行错误: ${error.message}`);
+        return;
+    }
+    if (stderr) {
+        console.error(`错误输出: ${stderr}`);
+        return;
+    }
+    console.log(`输出: ${stdout}`);
+});