feat: ship Barkstack UI plugin
All checks were successful
Build and Push Image / docker-build-and-push (push) Successful in 6m32s
Test and Release PawSQL / test (push) Successful in 50s
Test and Release PawSQL / release (push) Successful in 8s

This commit is contained in:
2026-09-16 13:47:07 -04:00
parent cae9419cd5
commit 7d7133d6cc
16 changed files with 4034 additions and 19 deletions

18
ui/vite.config.ts Normal file
View File

@@ -0,0 +1,18 @@
import { svelte } from '@sveltejs/vite-plugin-svelte';
import { defineConfig } from 'vite';
import { resolve } from 'node:path';
export default defineConfig({
plugins: [svelte({ compilerOptions: { customElement: true } })],
build: {
lib: {
entry: resolve(__dirname, 'src/entry.ts'),
formats: ['es'],
fileName: () => 'assets/entry.js'
},
outDir: '../internal/adminui/dist',
emptyOutDir: true,
target: 'es2022'
},
test: { environment: 'jsdom' }
});