From 497270cf5e7174d7d893b93b25df9d281b0a6b09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BD=9A=E5=90=8D=E7=A8=8B=E5=BA=8F=E5=91=98?= <1968115437@qq.com> Date: Wed, 22 Feb 2023 11:27:02 +0800 Subject: [PATCH] =?UTF-8?q?ci:=20=E4=B8=80=E4=BA=9B=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E5=92=8C=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- vite.config.ts | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/vite.config.ts b/vite.config.ts index b9e5a1d..1b4c409 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -5,6 +5,49 @@ import { resolve } from 'path'; import { loadEnv } from 'vite'; import Unocss from 'unocss/vite'; +//发布时动态修改 manifest.json +// if (process.env.NODE_ENV === 'production') { +// // 读取 manifest.json ,修改后重新写入 +// const fs = require('fs'); +// const manifestPath = './src/manifest.json'; +// let Manifest = fs.readFileSync(manifestPath, { encoding: 'utf-8' }); +// function replaceManifest(path: string, value: any) { +// const arr = path.split('.'); +// const len = arr.length; +// const lastItem = arr[len - 1]; + +// let i = 0; +// let ManifestArr = Manifest.split(/\n/); + +// for (let index = 0; index < ManifestArr.length; index++) { +// const item = ManifestArr[index]; +// if (new RegExp(`"${arr[i]}"`).test(item)) ++i; +// if (i === len) { +// const hasComma = /,/.test(item); +// ManifestArr[index] = item.replace(new RegExp(`"${lastItem}"[\\s\\S]*:[\\s\\S]*`), `"${lastItem}": ${value}${hasComma ? ',' : ''}`); +// break; +// } +// } + +// Manifest = ManifestArr.join('\n'); +// } +// let Data1 = new Date().toLocaleDateString(); +// let Data2 = new Date().toLocaleTimeString(); +// let Data_ = Data1.replace(/\//g, '-') + ' ' + Data2; +// // 使用 +// replaceManifest('description', JSON.stringify(`app平台-${Data_}`)); +// replaceManifest( +// 'versionName', +// JSON.stringify( +// String(Number(JSON.parse(Manifest).versionCode) + 1) +// .split('') +// .join('.') +// ) +// ); +// replaceManifest('versionCode', JSON.stringify(String(Number(JSON.parse(Manifest).versionCode) + 1))); +// fs.writeFileSync(manifestPath, Manifest, { flag: 'w' }); +// } + // https://vitejs.cn/config/ export default ({ mode }: ConfigEnv): UserConfig => { const root = process.cwd();