Files
pad/web
xarmian 1dabfd02ae chore(web)(deps): bump vite-plugin-svelte 6 → 7 + vite 7 → 8 (TASK-1238) (#444)
Coordinated bump of the Vite/Svelte build-tool stack:
  • @sveltejs/vite-plugin-svelte  6.2.4 → 7.1.2
  • vite                          7.3.1 → 8.0.11
  • @sveltejs/kit                 2.59.0 → 2.59.1 (patch, free)
  • @sveltejs/adapter-auto        7.0.0  → 7.0.1  (patch, free)

Smaller cascade than the deferred-bumps task body anticipated:
SvelteKit 2.59 already declared `^8.0.0` in its vite peer-dep range, so
no Kit major bump was needed. adapter-static is unaffected. svelte
itself (5.55.5) already meets the new vite-plugin-svelte v7 peer
constraint of ^5.46.4.

vite-plugin-svelte v7 integrated the inspector into the main package,
so the @sveltejs/vite-plugin-svelte-inspector subdep is gone — net 5
fewer packages in node_modules and a ~7KB smaller package-lock.json.

Vite 8 highlights:
  • Rolldown replaces Rollup as the bundler — production build dropped
    from ~12-16s to ~5.9s on this codebase
  • Internally compiled with TypeScript 6 (matches our own TS 6 bump
    from TASK-1236)
  • npm audit moderate vulnerability count: 1 → 0 (the uuid advisory
    was in a transitive that's no longer needed)

Configs reviewed:
  • vite.config.ts is minimal (just sveltekit() plugin + dev proxy);
    none of v7's removed options (vitePlugin.hot,
    vitePlugin.ignorePluginPreprocessors, api.idFilter,
    plugin.api.sveltePreprocess) are in use.
  • svelte.config.js uses vitePlugin.dynamicCompileOptions (still
    supported in v7).

Verified:
  • Clean reinstall (rm -rf node_modules package-lock.json && npm i):
    290 packages, 0 vulnerabilities
  • npm run build: succeeds in 5.91s, output passes through
    adapter-static
  • make check (golangci-lint + go test + npm run build + svelte-check):
    0 errors, same 6 pre-existing warnings
  • Manual UI verify: dashboard, item list, item detail, editor (block
    drag-handle, content edit/save), role board, share page all render
    and function correctly

Rolldown surfaced one informational warning that's PRE-EXISTING in our
code, not introduced by the bump:
  [INEFFECTIVE_DYNAMIC_IMPORT] sync.svelte.ts is both static- and
  dynamic-imported. Filed as a follow-up task — fix is out of scope
  for this PR.

Closes dependabot/npm_and_yarn/web/sveltejs/vite-plugin-svelte-7.0.0
(PR #215). Closes PLAN-1240 Tier 3 (5/5 ships).
2026-05-08 07:52:15 -04:00
..
2026-03-26 01:52:36 +00:00
2026-03-26 01:52:36 +00:00
2026-03-26 01:52:36 +00:00
2026-03-26 01:52:36 +00:00
2026-03-26 01:52:36 +00:00
2026-03-26 01:52:36 +00:00

Pad Web UI

SvelteKit 2 + Svelte 5 frontend for Pad, compiled to static files and embedded into the Go binary.

Development

npm install
npm run dev          # Dev server at localhost:5173 (proxies API to localhost:7777)
npm run build        # Production build to build/
npm run check        # Type checking with svelte-check

When developing, run the Go backend separately with make dev from the project root.

Building for Production

Do not build in isolation. Always use make build from the project root — this builds the web frontend, then compiles the Go binary with the build output embedded via //go:embed.

Stack

  • Svelte 5 with runes ($state, $derived, $effect)
  • SvelteKit 2 with adapter-static (SPA mode)
  • Tiptap block editor with markdown round-trip
  • svelte-dnd-action for drag-and-drop in board/list views
  • SSE for real-time updates
  • TypeScript throughout

Structure

src/
  routes/                    SvelteKit pages
    +layout.svelte           App shell (sidebar + main)
    +page.svelte             Landing/redirect
    [workspace]/
      +page.svelte           Dashboard (collections, phases, activity)
      +layout.svelte         SSE connection per workspace
      [collection]/
        +page.svelte         Collection view (board/list)
      [collection]/[item]/
        +page.svelte         Item detail + editor
      conventions/            Purpose-built conventions page
      playbooks/              Purpose-built playbooks page
      settings/               Workspace settings
  lib/
    api/client.ts            HTTP API client
    components/
      layout/                Sidebar, navigation
      editor/                Tiptap editor, raw markdown editor
      fields/                FieldEditor, relation picker
      items/                 ItemCard, ItemDetail
      collections/           BoardView, ListView
      common/                StatusBadge, badges, modals
      search/                CommandPalette
      activity/              ActivityFeed
    stores/                  Svelte 5 reactive stores
      workspace.svelte.ts    Workspace state
      collections.svelte.ts  Collection + item state
      ui.svelte.ts           Sidebar, mobile state
    types/index.ts           TypeScript types and constants
  app.css                    Global styles and design tokens