Explorar el Código

Merge branch 'config_href_url' of http://8.130.72.63:18081/ztpt-dev/social-management-screen into dev

# Conflicts:
#	src/App.vue
CzRger hace 1 año
padre
commit
2fdeacad40
Se han modificado 4 ficheros con 30 adiciones y 1 borrados
  1. 1 1
      package.json
  2. 29 0
      preBuild.js
  3. BIN
      src/views/common/img/info-main-2.png
  4. BIN
      src/views/common/img/ldgh-son_2.png

+ 1 - 1
package.json

@@ -5,7 +5,7 @@
   "type": "module",
   "scripts": {
     "dev": "vite",
-    "build": "vite build --mode development",
+    "build": "node preBuild.js && vite build --mode development",
     "preview": "vite preview"
   },
   "dependencies": {

+ 29 - 0
preBuild.js

@@ -0,0 +1,29 @@
+import * as child_process from 'child_process'
+import * as fs from 'fs'
+import dayjs from 'dayjs'
+
+let commitId = child_process.execSync(`git log -n1 --format=format:"%H"`).toString();
+let commitUser = child_process.execSync(`git log -n1 --format=format:"%an"`).toString();
+let commitBranch = child_process.execSync(`git log -n1 --format=format:"%d"`).toString().trim();
+let commitTime = child_process.execSync(`git log -n1 --pretty=format:"%ad" --date=iso`).toString().substring(0, 19);
+let buildUser = child_process.execSync(`git config user.name`).toString().trim();
+
+// const txt = `提交ID:${commitId}
+// 提交用户:${commitUser}
+// 提交分支:${commitBranch}
+// 提交时间:${commitTime}
+// 打包用户:${buildUser}
+// 打包时间:${dayjs(new Date()).format('YYYY-MM-DD HH:mm:ss')}
+// `
+const j = {
+  '提交ID:': commitId,
+  '提交用户:': commitUser,
+  '提交分支:': commitBranch,
+  '提交时间:': commitTime,
+  '打包用户:': buildUser,
+  '打包时间:': dayjs(new Date()).format('YYYY-MM-DD HH:mm:ss'),
+}
+
+fs.writeFileSync('./src/out/git_info.json', JSON.stringify(j));
+
+console.log('========== Save git info done. ==========');

BIN
src/views/common/img/info-main-2.png


BIN
src/views/common/img/ldgh-son_2.png