Sebastian Lorenz

Results 102 comments of Sebastian Lorenz

We are also running into this (https://github.com/dotansimha/graphql-code-generator/issues/6199). The `bug` label was removed a few days ago. Is there a solution for how this can be fixed through config or why...

> Also not sure what to do about time zones :) Yeah. The time zone needs to be part of it. Probably in the same way as for an ISO...

Hey. Have you seen https://app.quicktype.io/ ?

Without having dug further yet, it would appear that this is an issue with vite cloudflare module resolution. From what I can tell, the `msgpackr` package that is imported from...

So the problem is that `msgpackr` doesn't have a `browser` export condition. And the vite cloudflare plugin (or the SSR environment in vite more specifically) seem to assume a node...

https://github.com/kriszyp/msgpackr/pull/161

According to the vite configuration documentation, this (or a version of this) should also work... But it doesn't: ```ts defineConfig({ plugins: [ cloudflare({ viteEnvironment: { name: "ssr" } }), ],...

Until then, just copy the code and replace it with import.meta.env in userland.

We've got the same problem. The --focus option that was introduced lately does not currently solve the problem adequately for us because some of our local dependencies are private npm...