Morlay
Morlay
/retest-required
seems cause by the new feature https://bun.com/blog/bun-v1.3.4#custom-proxy-headers-in-fetch. in minifetch. options of `http/https.request()` like: ```js { auth: "", host: "registry.npmjs.org", hostname: "registry.npmjs.org", path: "/%40morlay%2Fbunpublish", port: "", protocol: "https:", method: "GET", headers:...
a small example to reproduce ```x.c // x.c #include napi_value hello(napi_env env) { napi_value result; napi_create_object(env, &result); return result; } ``` ```x.ts // x.ts import { cc } from "bun:ffi";...