Greg Richardson
Greg Richardson
Nice work @jasonmadigan 🚀 Did you find you had to do much more than mentioned above? Would be great to upstream if you are open to it.
@ankane Funny, I was planning to send a PR shortly to request adding Supabase to the list. Been working with their team to get that integrated: https://github.com/supabase/postgres/pull/472 Thanks again for...
Awesome work, this is becoming a much-needed feature at LC. Trying to piece together how this is implemented. Hard to see the full picture w/o an example or tests, so...
> I'm not strongly opinionated other than saying "$env isn't technically being used here", but that might be an implementation detail that's hidden (ie what if $env was extended to...
> > Thoughts on calling this default instead of none? Eg. in situations where we do set an environment, but that environment doesn't exist under teamMembers. > > This is...
@joelgallant Sounds good. Let's line up a time this week to chat about it.
Yeah, your best bet is probably to add this to the initial prompt/instructions given to GPT. If this info is dynamic for your use case, you would need to dynamically...
Thanks for reporting @oldbettie. That would definitely be frustrating having to deploy each time just to test - not at all the intended pattern. I took a look into [jszip](https://github.com/Stuk/jszip)...
@laktek sorry I didn't actually attempt on Deno Deploy - was making that assumption based on the original post, but I could be wrong. @oldbettie the latest Supabase CLI uses...
Thanks. Looks like `puppeteer` is likely the one importing JSZip: https://github.com/lucacasonato/deno-puppeteer/blob/45b3162585b98ad8d54abeb56f48ecbb17c614eb/vendor/puppeteer-core/vendor/zip/mod.ts#L1 You can try [overriding imports](https://deno.com/[email protected]/basics/import_maps#overriding-imports) to force `puppeteer` to pull in JSZip with the `bundle` param ~~(untested)~~: **Edit for...