Eric Allam
Eric Allam
We want to be able to subscribe to changes on a table that has an array of strings column (think a `tags` column) and we want to be able to...
This will make it easier for contributes to download the repo and install packages using the required package manager. Bonus points for adding an `.nvmrc` to make it easy to...
Your note about setting moduleResolution to "bundler" in tsconfig.json made me curious (this shouldn't be necessary in a dual-package setup), so I just checked your types and it looks like...
Currently superjson does not export commonjs, only ESM. It would be great to support both formats. Our package that we use superjson in supports both formats and having superjson be...
We want to give users the ability to add custom transformers, and for that to work nicely with typescript we need these types. I tried to do `export type` but...
When trying to use electric on a table that is partitioned: ```sql create table runs ( id bigint, task_id bigint not null, payload text, status text, created_at timestamp with time...
See the following TS snippet: ```ts import { z } from "zod"; const EventNameSchema = z.string().or(z.array(z.string())); type EventName = z.infer; // EventName is string | string[] const EventSchema = z.object({...
https://x.com/colinhacks/status/1883907825384190418
It's not currently possible to change the object store (say, from R2 to S3) without previously stored outputs and payloads breaking (they'll try to be fetched from the new store...
Remotion currently works well on [AWS Lambda](https://www.remotion.dev/docs/lambda) and other serverless platforms and it would be great to add a remotion build extension that made it possible to use remotion with...