Drew Rodman

Results 7 comments of Drew Rodman

Hard to say without seeing the log output but my assumption here is that I re-introduced a race condition while refactoring that I had previously guarded against with respect to...

How's this for a timely review? Launching archon and then selecting server seems to cause the process to exit with no message. The main server executable also seems to have...

Having the same issue with trying to use `import { Buffer } from "node:buffer";` per the [docs](https://developers.cloudflare.com/workers/runtime-apis/nodejs/): ``` service core:user:worker: Uncaught Error: Dynamic require of "node:buffer" is not supported at...

I'm using `import { Buffer } from "node:buffer";` (as opposed to `require()`) as the docs recommended and am still encountering the issue

@jasnell here's useless but functional barebones example where I see the problem: worker.ts ``` import { Buffer } from 'node:buffer'; addEventListener('fetch', (event) => { let fetchEvent: FetchEvent = event as...

Thank you @irvinebroque , the docs update feels like the most important part here since this can create a potentially difficult situation for people trying to upgrade to Wrangler 3....

Hi @weeco , Sorry for not being clear there, I'm specifically interested in two cases: * git + filesystem * git + git (two different repositories) Support for either one...