-
-
Notifications
You must be signed in to change notification settings - Fork 13
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
Svelte5 support #67
Comments
I need to take a look at the needed changes to support svelte 5 |
yeah, the main change it's storage replaced by rune. Shouldn't be too much changes. |
Will be good to do this #66 during this support as well. |
Svelte5 is released. Any updates? Should I help, or should we start searching for a new library? |
Now that svelte5 is out I'll find some time to work on it. I haven't used svelte 5 new idioms a lot yet, so I need to get familiar with them first. If anyone has used them for a while any input is welcomed. |
As I said, Svelte5 provided a universal reactive solution - $state(), which replaces Svelte4 Stores and component-level variables. I think we just should replace Store by $state, that's it. But we definitely should also solve #66 |
ok, I started working on this a bit. To make this better the changes are a bit more profound than that. Ideally. A lot of the code is now unnecesarily complicated because in JS/TS files we had no reactivity, but now with $state being usable outside svelte components the codebase can be greatly simplified. |
Seems like we should replace storage by value.
The text was updated successfully, but these errors were encountered: