feat: Show the build date on the loading banner of unreleased builds (#2659)

This commit is contained in:
Dermot Duffy
2026-08-05 22:15:00 -07:00
committed by GitHub
parent c137f4c00c
commit 567690831c
7 changed files with 85 additions and 5 deletions
+2
View File
@@ -1,6 +1,7 @@
import { visualizer } from 'rollup-plugin-visualizer';
import { defineConfig } from 'vite';
import { buildDate } from './scripts/build-date-plugin.js';
import { getBuildDefines } from './scripts/build-defines.js';
import { cleanDist } from './scripts/clean-dist-plugin.js';
import { facadeEntry } from './scripts/facade-entry-plugin.js';
@@ -24,6 +25,7 @@ export default defineConfig(({ mode }) => {
plugins: [
cleanDist(),
svgPath(),
buildDate(),
facadeEntry({ publicFileNames: PUBLIC_ENTRIES }),
visualizer({ filename: 'visualizations/treemap.html', template: 'treemap' }),
],