Tom McLaughlin
Tom McLaughlin
Hey, I got it to work by applying the following patch (to the `v0.20.0` tag): ```patch diff --git a/pkg/cluster/internal/providers/podman/provision.go b/pkg/cluster/internal/providers/podman/provision.go index c240a292..4b276ba5 100644 --- a/pkg/cluster/internal/providers/podman/provision.go +++ b/pkg/cluster/internal/providers/podman/provision.go @@ -130,6 +130,7...
Interesting idea. In my experience, TypeScript understands discriminated unions perfectly well without explicit type guards. I.e. ```typescript if (u.tag === "A") { // Now TSC knows u is an A...
Huh, what checker? > I'd expect it to be optional. As in, on a per-type basis? Perhaps opted into in the `deriveTypeScript'` call with `ExtraTypeScriptOptions`?
A few more notes: Seems to be something the Svelte community is working on: https://github.com/sveltejs/svelte/issues/9130 After further thought, adding formatting-type options in the `ExtraTypeScriptOptions` isn't something we're really set up...
> What's the best workaround for this? ``` npm install --lockfile-version 2 ```
@runeksvendsen the reason you're seeing "cannot start a transaction within a transaction" is because of the nature of this issue -- when the `commit` at the end of `withTransaction` throws...
Hey, I still need to think about most of this a bit more but wanted to clarify on this part -- > If you exclusively rely on @deprecated to remove...
Btw this is still on my radar and I feel properly guilty for neglecting it--I'm still a bit busy at the moment but I'll get back to it as soon...
Hey, so I finally got a chance to play around with the Haddocks idea I mentioned and I think I've come up with a good solution for this. First I...
> Just curious, how does this handle malformed haddocks? Well, you definitely need to pass the `-haddock` GHC flag when compiling or else the comments aren't available. The docs of...