Nathan Whitaker
Nathan Whitaker
Currently we only enable BYONM if the package.json is at the root. If the package.json is in a workspace member, we silently stop using BYONM and start using the global...
Fixes https://github.com/denoland/deno/issues/25533. Fixes https://github.com/denoland/deno/issues/25396. Previously we only supported it on `deno install` and `deno cache`, which is annoying if you're using `nodeModulesDir: auto`. Also changes from printing output of lifecycle...
Closes https://github.com/denoland/deno/issues/25899
Closes #26183. The warnings are super noisy and not actionable for the user
Fixes https://github.com/denoland/deno/issues/26341. We try to call `op_set_nodelay` on an `UpgradeStream`, which doesn't support that operation. When contructing a `TcpConn`, just store whether or not it's backed by a proper tcp...
repro: ``` ❯ deno run -A npm:create-svelte@latest repro create-svelte version 6.4.0 ┌ Welcome to SvelteKit! │ ◇ Which Svelte app template? │ SvelteKit demo app │ ◇ Add type checking...
Currently we only support `SIGINT` and `SIGQUIT`. Node/libuv support other signals: https://github.com/libuv/libuv/blob/fbe2d85bd5a5c370a8cacea92b3bdfbd9f98a530/include/uv/win.h#L78-L96.
Part of #26179
There's code out there that checks whether stdout is a tty by doing an instanceof check, e.g. in angular: https://github.com/angular/angular-cli/blob/d66aaa3ca458e05b535bec7c1dcb98b0e9c5202e/packages/angular/cli/src/utilities/color.ts#L14-L16
Fixes #26179. The original error reported in that issue is fixed on canary, but in local testing on my windows machine, `next build` would just hang forever. After some digging,...