build: add BUILD_BRANCH

This commit is contained in:
菲鸽 2024-06-16 22:17:24 +08:00
parent 1c3e045331
commit fa0cc58fec
2 changed files with 8 additions and 3 deletions

View File

@ -1,5 +1,5 @@
<!doctype html> <!doctype html>
<html build-date="%BUILD_TIME%"> <html build-time="%BUILD_TIME%" build-branch="%BUILD_BRANCH%">
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" /> <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />

View File

@ -1,4 +1,5 @@
import path from 'node:path' import path from 'node:path'
import { execSync } from 'node:child_process'
import dayjs from 'dayjs' import dayjs from 'dayjs'
import { defineConfig, loadEnv } from 'vite' import { defineConfig, loadEnv } from 'vite'
import Uni from '@dcloudio/vite-plugin-uni' import Uni from '@dcloudio/vite-plugin-uni'
@ -87,11 +88,15 @@ export default ({ command, mode }) => {
// 通过这个插件在修改vite.config.js文件则不需要重新运行也生效配置 // 通过这个插件在修改vite.config.js文件则不需要重新运行也生效配置
restart: ['vite.config.js'], restart: ['vite.config.js'],
}), }),
// h5环境增加编译时间 // h5环境增加 BUILD_TIME 和 BUILD_BRANCH
UNI_PLATFORM === 'h5' && { UNI_PLATFORM === 'h5' && {
name: 'html-transform', name: 'html-transform',
transformIndexHtml(html) { transformIndexHtml(html) {
return html.replace('%BUILD_TIME%', dayjs().format('YYYY-MM-DD HH:mm:ss')) const branch = execSync('git rev-parse --abbrev-ref HEAD').toString().trim()
console.log('branch -> ', branch)
return html
.replace('%BUILD_TIME%', dayjs().format('YYYY-MM-DD HH:mm:ss'))
.replace('%BUILD_BRANCH%', branch)
}, },
}, },
// 打包分析插件h5 + 生产环境才弹出 // 打包分析插件h5 + 生产环境才弹出