-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Svelte 5 migration #4296
Comments
Can the svelte 5 migration script handle this? https://svelte.dev/docs/svelte/v5-migration-guide#Migration-script |
We should also keep backward compatibility with Svelte 4 because not everybody will transition right away due to some core libraries not yet migrated |
We just need to change the mount, for new projects (which automatically use svelte5). import {mount} from "svelte"
const app = mount(App,{
target: document.getElementById('app'),
}); |
@CodeDoes Right, but it's still not refreshing the DOM in Svelte when the variable changes. This was working in Svelte 4. |
I guess we should start discussing migration to Svelte 5 here. Anybody working on it yet?
The text was updated successfully, but these errors were encountered: