-
### Describe the problem
Add support for Svelte 5 and runes: https://svelte.dev/blog/runes
### Describe the proposed solution
At some point it'd be nice to have rune versions of the built-in …
-
### Is there an existing issue for this?
- [X] I have checked for existing issues https://github.com/getsentry/sentry-javascript/issues
- [X] I have reviewed the documentation https://docs.sentry.io/…
-
# How to Combine Stores Together in Svelte - Webtips
In Svelte, you can use a derived store, if you want a store to have a value based on other stores. This way, you can combine multiple stores toget…
-
**Describe the feature**
We want to try migrating to Svelte 5, but the following projects don't support Svelte 5 yet:
- svelte-intl-precompile ([open issue](https://www.github.com/cibernox/svelte-int…
rmunn updated
3 weeks ago
-
### Update (2024-11-03)
Seems like it's broken in Firefox only.
Tested With `@sveltejs/kit@2.7.4`
- ❎ Firefox 132.0 (aarch64)
- ✅ Chrome 130.0.6723.92
- ✅ Safari 18.0.1(20619.1.26.31.7)
…
-
### Is there an existing issue for this?
- [x] I have checked for existing issues https://github.com/getsentry/sentry-javascript/issues
- [x] I have reviewed the documentation https://docs.sentry.io/…
-
### Description
This is most relevant to Svelte 5, but is also applicable to prior versions.
Reactive variables and non-reactive variables are co-located in your code when writing a Svelte app.
…
-
React 18 introduces useSyncExternalStore as a solution for this exact problem.
We should create new major version of react-use-svelte-store in favor of a version that uses the correct tool for the …
-
I'm not able to submit a pull request at the moment, so hopefully this is okay.
I authored a bunch of svelte store libraries which might be worth adding to your list:
## Packages
* [@crikey/s…
-
### Describe the problem
Let's say I have `item/[id]/+page.svelte`, which just contains:
```svelte
import { page } from '$app/stores';
$: itemId = $page.params.id;
Item {itemId}…