Cody Casterline

Results 183 comments of Cody Casterline

This is still broken in v0.11.0, using the reproduction steps in my original report, though with a slightly different error message. ``` Task build deno run -A example.ts ✘ [ERROR]...

Should I open a new issue? I can't re-open this one.

@bartlomieju Done. No need to update the workflow, it already runs `cargo test` for the workspace, so I just dropped a little self-contained integration test into the example dir. Result:...

Likewise. If there are any blockers to merging this, I'm happy to make them.

I'm a new user of nestjs-zod myself, but IMO this is not a nestjs-zod issue, **it's a nestjs & nestjs-swagger issue**. Even if you use its built-in DTOs, it will...

> should become a regex route in supported versions I know that the regex route "works generally" in both environments, it's just the edge case of `/` that behaves differently....

> supported since v4.8.12 I just realized that my lockfile locks the version to 4.8.2: https://github.com/NfNitLoop/gemi/blob/ff2f11cd293464dc8189b70063518e5169de459c/deno.jsonc#L34 I wonder if Deno isn't using the lockfile when you `deno run jsr:@nfnitloop/gemi` or...

OK, I have a small reproduction: ```ts #!/usr/bin/env -S deno run --check -N import { Hono } from "jsr:@hono/[email protected]" import { delay } from "jsr:@std/async" const app = new Hono()...

While neither is a full "general case" solution to your problem, @Sparticuz, I have a couple recommendations that might help your particular case: ## 1: Send Strings Use your schema...

Still experiencing this issue in new Deno code I'm writing in 2.0. In this case, the behavior I'm seeing is: * use `fetch()` to read some data in a long...