Edward Bramanti

Results 31 comments of Edward Bramanti

I would love to see this land as well, just moved over from Glow Wallet. Any way I can help?

@bestander This would be useful for Lerna workflows where you want to reset your workspace dependencies. I want to clean all of my monorepo dependencies except the tools installed in...

@alexschneider Should we close this since 1.0 has been official for a while?

+1 to this issue, I am running into it as well for body parameters. I think this might be solvable by overriding the behavior of `.static` to introspect fields that...

I was able to find a workaround for this issue using `Transform` from Typebox. Given this validation body as an example: ```ts export const RequestBody = t.Object({ givenArguments: t .Transform(t.Optional(t.Record(t.String(),...

Here is how it can be exported as a reusable function with type safety: ```ts import { t, type Static, type TSchema } from "elysia"; export const optionalWithDefaultValue = (schema:...

@jasperdunn The above did not work after all, I am now doing this: ```ts t.Record(t.String(), t.Unknown(), { default: {} }) ``` This seems to work for me, but it still...

Any update on this? It would be great to see version management integrated directly into the `bun` CLI, rather than relying on third-party tools. I've been using [`bunv`](https://github.com/aklinker1/bunv) for this,...

@KyleAMathews Any update on this? Would be great to get this merged in with all the changes the client has undergone

I am running into this issue intermittently too, however in a different runtime environment (Bun).