Patrick Miller

Results 38 comments of Patrick Miller

Can cross-fetch be removed entirely? I'm trying to build a project to deploy to cloudflare workers which has a strict 1MB limit, so even if the workaround above is possible,...

Update: I ran into a similar issue with the `form-data` dependency, it was pulling in a lot of node.js dependencies which caused my project to fail to build for cloudflare...

This would also be useful for the `@graphql-codegen/schema-ast` plugin. Some runtime environments such as Cloudflare Workers are limited to a code size of 1mb so every byte counts.

I have struggled to find good examples but today I found that `react-dom/server` has [the "worker" condition (and also "deno")](https://github.com/facebook/react/blob/main/packages/react-dom/package.json) which seems like another point in support of doing the...

Hi, I tried another experiment today, I tried to see if Vite could build the worker with the correct dependencies in one build step. I messed around with some of...

Sure that makes sense. Especially considering that `exports` is the newest standard and it is possible to specify `browser` condition inside of `exports`, my gut feeling is the `exports` field...

Yeah I am not 100% sure how to go about this too. I think it would be worthwhile to do something because IMO, solid-start has a amazing value proposition for...

I tried the [email protected] which had some [new exports added for deno and worker](https://github.com/solidjs/solid/commit/c52a3e316e69c4628d00a356f601a497adf6c827), unfortunately I don't think it really makes a difference yet because the "browser" condition comes first...

Yeah I still have not fully wrapped my head around that part of conditional exports. I like the way aliases work(ed) because as a package consumer I could easily set...

@ryansolid Thank you for the update, it definitely helped! I created a new project from scratch and added some of the problematic dependencies like `@graphql-yoga/common` and `graphql-request` - Final server...