Quentin Fox
Quentin Fox
I'm also encountering this issue. Is there anyone able who knows more about the LSP setup who would be able to tackle this issue? I'm happy to help debug this,...
This has been fixed in recent versions of the svelte language server, from what I can tell.
Sorry, that's my bad - that's just some pseudocode I threw together this morning, I'll update it so that it's more representative of what we were doing. We are definitely...
Here are the pool options, for a sanity check (the log option is what I used to log everything). ```ts const poolOptions = { max: 3, host: databaseParameters.host, port: databaseParameters.port,...
I'll try to find the time this weekend to put a MWE together!
It could be nice to have two separate code actions for this? One to have a decodeN, which would fail if there were too many arguments for the constructor, and...
Agreed that it makes the snapshots a bit more well-integrated, but as one downside, it does make it less ergonomic when you have a page that needs snapshots which *doesn't*...
For the infinite scroll restoration example given above, it does seem like that the two should potentially be integrated? I guess we could also have some sort of `cacheData` function...
No that all makes perfect sense. The breaking change makes sense and feels like it would help solve the problem in an elegant way. Right now the docs don't say...
Following the API you showed in scenario 2), If we didn't do an `await data()` in `+page.ts` load, were you thinking that the `+page.server.ts` load would still run? To your...