Conduitry

Results 523 comments of Conduitry

There's not really a reasonable way to handle this well, because each component is compiled independently. I guess we could not emit a warning whenever there's any component inside the...

Do you have a reproduction with fewer moving parts? Are the spreads an important part of this? Is the text input?

`#each store.values as item}` isn't really an option, because `store.values` isn't an array - it's a store containing an array. `$store.values` means the `.values` key in the object contained in...

Might it be nice to add `|number` and `|string` to `type='number'` as well?

As I mentioned on #3105, I'm worried about doing this without it also working in SSR, and we would need to agree on an API for that. It should probably...

This situation feels like it's calling out for a WeakMap to act as a central lookup for already-resolved promises. But I don't know whether it's worth it if we have...

`on:message{handleMessage}` is technically valid. It means that `message{handleMessage}` events will be passed on to the parent component. One of the things considered for Svelte 4 is to have more strict...

There's another issue for exposing the underlying Polka handler instead of starting up the server with the Node adapter. I think that's the appropriate solution here. We want to encourage...

The same code is being sent to all browsers, so I suspect the Firefox vs Chrome difference is a race condition, depending on whether the event has already fired by...