Upgrade to Svelte 5, Vite 6 & update Go dependencies#1
Merged
kushiemoon-dev merged 9 commits intomainfrom Feb 12, 2026
Merged
Conversation
- fiber v2.52.10 -> v2.52.11 - go-sqlite3 v1.14.33 -> v1.14.34 - golang.org/x/crypto v0.33.0 -> v0.48.0 - golang.org/x/net v0.35.0 -> v0.50.0 - golang.org/x/sys v0.30.0 -> v0.41.0 - golang.org/x/text v0.22.0 -> v0.34.0
- Svelte 3.59 -> 5.x - Vite 4.5 -> 6.x - @sveltejs/vite-plugin-svelte 2.5 -> 5.x - svelte-check 3.8 -> 4.x - Remove svelte-preprocess (built into Svelte 5) - Remove @tsconfig/svelte (inline tsconfig for Svelte 5) - Update svelte.config.js to use vitePreprocess from plugin
About, Terminal, Sidebar: on:click → onclick, export let → $props()
MetadataModal, AnalysisModal, RenameModal, ConvertModal: $props(), $derived(), $effect(), $state(), onclick/onkeydown
Search: onkeypress, onclick History: $props(), $derived(), $state(), onclick/onkeydown/onchange
…runes Queue: $derived() for store subscriptions Files: $derived(), $state(), onclick/onchange Settings: $effect(), $state(), onclick/onchange, stopPropagation
Home: $props() with onContentCleared callback (replaces createEventDispatcher), $derived(), $effect(), $state(), onclick/onkeydown App: on:contentCleared → onContentCleared prop
Update package.json.md5 hash
Replace deprecated new App() constructor with mount() from svelte. Fixes blank screen on startup.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Full dependency migration and Svelte 5 runes adoption.
svelte-preprocess(now built-in).sveltefiles migrated from legacy syntax to runesmain.tsto use Svelte 5mount()APIMigration details
export let foolet { foo } = $props()$: val = exprlet val = $derived(expr)$: { sideEffect() }$effect(() => { sideEffect() })let x = valuelet x = $state(value)on:click={fn}onclick={fn}createEventDispatcher()$props()new App({ target })mount(App, { target })Scope
Go:
go.mod,go.sumTooling:
package.json,svelte.config.js,tsconfig.json,main.tsComponents: Sidebar, MetadataModal, AnalysisModal, RenameModal, ConvertModal
Pages: Home, Search, Queue, Files, History, Settings, About, Terminal
Root: App.svelte