This commit is contained in:
LukeParkerDev
2026-05-04 11:20:57 +10:00
parent 6ada6e0db9
commit fcb4bc1b3a
48 changed files with 1766 additions and 2107 deletions

View File

@@ -61,6 +61,7 @@ const createEmbeddedWebUIBundle = async () => {
await $`bun run --cwd ${appDir} build`
const files = (await Array.fromAsync(new Bun.Glob("**/*").scan({ cwd: dist })))
.map((file) => file.replaceAll("\\", "/"))
.filter((file) => !file.endsWith(".map"))
.sort()
const imports = files.map((file, i) => {
const spec = path.relative(dir, path.join(dist, file)).replaceAll("\\", "/")