Yusuke Wada

Results 1706 comments of Yusuke Wada

Hi @sor4chi ! Thanks for raising the issue. Good point. I think we should update the Contribution Guide before doing this. But, I don't want to force things on contributors...

Hi @Code-Hex I think the `await` is not necessary: ```ts return await html`${await Layout2({ children })}` ``` The above should be the following as you write: ```ts return await html`${Layout2({...

Hi @aldy505 ! Is it not enough to import from `hono`? ```ts import type { Context } from 'hono' ``` The reason for not exporting from `hono/types` is that you...

@ryuapp I see. But I feel it's a little bit weird because we use Bun as just a task runner. Though, we can still use `yarn`, `bun install` command will...

Or we can use `$npm_execpath` or `%npm_execpath%`?

@ryuapp We might consider using Bun only for the package installer and `yarn` for the task runner.

> This works on WSL and Windows. > However, using `$npm_execpath` directly does not support Windows. You are right. Alternatively, we could use `yarn` as a task runner instead of...

Hi @Karibash Thanks for the PR. This is a new feature. So, it will be introduced in the next "minor" version. It can't be merged to "main" immediately. I'll prepare...

Hey @Karibash ! I'll merge this into the "next" branch for `v4.1.0`. Thanks! It will be released maybe soon.

@ryuapp This is great. I'll review the details later. This will be introduced in the next "minor" version.