Tim Osborn
Tim Osborn
I'm looking too.. currently evaluating https://github.com/wilddeer/stickyfill
I suspect I'm seeing the same thing... https://youtu.be/iFo2i3ei490 Seems to work, though 👍
It's a great relief to find this issue (workarounds), thanks! Confirming that removing `exitOnResourceError` prevents crashes for me, too...
I'm experiencing the second issue, too. The solution to 1. is listed in the error message - if I destructure the estrella import I can repro your issue, but it...
> TypeError: Cannot read properties of undefined (reading 'filename') I wonder if this is due to "Breaking API change to WatchCallback" in https://github.com/rsms/estrella/releases/tag/v1.4.0? Downgrading estrella to 1.3.x resolves my issue...
Same as Nmichas - my workflow is alive again as of iTerm `3.3.0beta2` 👍
Thanks very much @gzuidhof 👍 I'm reconsidering my approach, as I think I'm building a footgun! > incoming request headers are ~~mutable~~ ***immutable*** and you have to init a new...
Ah! I think I just found provided solution using [`compose`](https://github.com/SunderJS/sunder/blob/master/lib/middleware/compose.ts): ```typescript import { Router, compose } from 'sunder' import { Env } from './bindings' import { handleBar } from './handlers'...
Here's what I'm doing (feedback welcome!) ```ts const module = { async fetch(request: Request, env: any, context: ExecutionContext) { request.tracer.addData({ env: env.ENVIRONMENT }) return await handleRequest(request, env); }, }; const...
Sorry about slow followup - missed your reply! Here's my config: ```json { "terminal" : "iterm", "osascript" : "/usr/bin/osascript", "debug" : true } ``` I can run `/usr/bin/osascript` from the...