Yoshiya Hinosawa

Results 643 comments of Yoshiya Hinosawa

Let's not do this. It seems very confusing to include many of unused values in the source code

Reverted in #703. Now https://saaskit.deno.dev/ seems back I just realized this changes the preact specifier without changing the fresh version. Is it possible to use different preact version than what...

We recently removed the dependency to (unstable) `route` in main of CLI (in `deno init --serve`). ref. https://github.com/denoland/deno/pull/26595 I think we still need to wait for a while (at least...

We've released 3 versions of CLI (2.1.0, 2.1.1, 2.1.1) which don't use unstable `route` function in `deno init --serve` output. I think it's time we can land this.

Is this `Deno.pipe` namespace aligned with the rest of Deno APIs? I think we usually express this kind of variation as `transport` option of `Deno.connect`. `Deno.pipe` namespace looks like random...

Ok. Thanks for the clarification

Confirmed this is fixed with the latest version of `npm:create-next-app`. Closing > just need to fix the failed test I'm not very sure where these tests are. Is that still...

I would only show the largest unit like: ```js if (duration.years >= 1) { return formatter.format({ years: duration.years }) + " ago"; } else if (duration.months >= 1) { return...

We already use wasm in std/crypto implementation https://github.com/denoland/std/tree/main/crypto/_wasm Do you suggest adding `bcrypt` and `argon2` to std/crypto digest API? Or do you suggest API specific to password hashing?

Tested `istanbul` (via `jest`). The comment lines seem excluded from total line count.