MacFJA

Results 79 comments of MacFJA

@benmccann You remove the branch `staging` with this PR #400 Was it intentional ?

Do you have a reproduction repository (or a stackblitz or similar) so I can check it ?

Each serializer have they own benefits and drawbacks | Serializer | Benefits | Drawbacks | |-------------|------------|--------------| | JSON | Well known format ; compatible with any parser | No protection...

The value you see this added by the serialization engine to avoid circular dependency. But you can change the serialization engine to another one, like @michaelcuneo did. You can use...

So the goal is to have this: ```html I'm the child .text-white { color: white } ``` ```html import Child from './Child.svelte'; div { background: green } .my-identifier { background:...

This error don't come from `@macfja/svelte-persistent-store` but from the serialization library `@macfja/serializer` This library predefined a several standard class like `AggregateError`. It's weird that you have the error, [the class...

Why do you need to persist a (Web)socket ? _A socket is a connection that will be opened and closed, and should not (IMO) be persisted in application data_ What...

Look like this is linked to this issue: https://github.com/sveltejs/svelte/issues/8213 There is a strange behavior with SSR and Browser update, hydration of `{@html}` don't see to work (but later update are...

OK, the issue is that I forget to add the `types` in the export section of the `packages.json`. I will try to fix it soon, but I'm off for a...

SvelteKit has just being release into version 1.0.0 I will probably do a complete rework of this lib :thinking: ---- I can merge the work done here (most of it...