Ross Mackay
Ross Mackay
having `.once` chained on either `rest`, `res` or `ctx` feels a bit odd to me as it's not immediately obvious if it's once per test or once per call to...
Sorry script was probably the wrong word, it's fish functions for sublime/vscode/cat'ting files etc, with z's nice autocompletion ``` function subz --wraps z subl (z -e $argv[1]) end ``` I...
+1 on this, and generally more parts accepting promises/observables (such as document action resolver, input type resolver etc)
@joshburgess Wow, I was just putting together an example to go with a proposal to add this, and I see It's already here! Looking at the implementation of thunks and...
> Similar need here. > > In our case we are trying to express hierarchy between Entities. When we get to nest the discriminated union representing the parent objects we...
@maxArturo > wanted to make you aware of some WIP work I've taken on re: this in https://github.com/colinhacks/zod/pull/1589. I'm looking around for expected use cases and ran into this issue;...
@maxArturo And it seems #1589 will hopefully fix this other issue we have with boilerplate caused by enums being rejected ```ts const documentSchema = z.object({id: z.string()}) // Currently we have...
The dynamic composition part I'm also struggling to grasp the benefits of. They've definitely gone crazy for it though, with react-router's controversial rewrite..
@fangel I raised a similar issue at #1444 which @maxArturo might be addressing in #1589 @maxArturo Morten's description seems to better explain what I was after
I just came across https://github.com/inngest/inngest-js/pull/217 too, which would scratch the same itch - but I'd still like to have control over it with middleware ideally