From 56cab34a9c9599b344b9196809266542a9d08207 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Thu, 15 Dec 2022 14:42:34 +0800 Subject: [PATCH] Test add last build time and commit hash --- src/pages/settings.jsx | 18 ++++++++++++++++++ vite.config.js | 7 +++++++ 2 files changed, 25 insertions(+) diff --git a/src/pages/settings.jsx b/src/pages/settings.jsx index 3205b84..0875c47 100644 --- a/src/pages/settings.jsx +++ b/src/pages/settings.jsx @@ -186,6 +186,24 @@ export default ({ onClose }) => { .

+ {__BUILD_TIME__ && ( +

+ Last build:{' '} + {' '} + {__COMMIT_HASH__ && ( + <> + ( + + {__COMMIT_HASH__} + + ) + + )} +

+ )} ); }; diff --git a/vite.config.js b/vite.config.js index f4b5207..ac587b1 100644 --- a/vite.config.js +++ b/vite.config.js @@ -1,9 +1,16 @@ import preact from '@preact/preset-vite'; +import { execSync } from 'child_process'; import { resolve } from 'path'; import { defineConfig, splitVendorChunkPlugin } from 'vite'; +const commitHash = execSync('git rev-parse --short HEAD').toString().trim(); + // https://vitejs.dev/config/ export default defineConfig({ + define: { + __BUILD_TIME__: JSON.stringify(Date.now()), + __COMMIT_HASH__: JSON.stringify(commitHash), + }, plugins: [preact(), splitVendorChunkPlugin()], build: { sourcemap: true,