Cyan
Cyan
> This PR currently fixes compatibility with the following packages: > > * node-notifyer > > The following packages still do not work properly: > > * discord-rpc > *...
Guess it would be better to move `PipeWrap` to the Rust side
**Help wanted** async stacktrace for error is gone rn I need do the same but in native: somewhat solution: (obviously bad, but at least it kinda works) Don't have a...
> @CyanChanges can you please provide result when running this code in your PR and on `main`? > > ``` > // bench.js > const ops = Deno.core.ops; > //...
> @CyanChanges can you please provide result when running this code in your PR and on `main`? > > ``` > // bench.js > const ops = Deno.core.ops; > //...
Yeah seems the improvements of the PR are mainly from `op_error_async`
Updates on this? My ears are bleeding :cry:
> I don't think the project is active tbh. Seems like the creator is not very interested. Your best chance is the workaround i mentioned with the ESM mod I...
> Could you folks list which packages you are trying to run that is blocked by not having access to loaders in Deno? Most recently we saw an issue with...
We should have something like this ```typescript // mod1.ts console.log("Hello World") ``` ```typescript // user.ts await import("./mod1.ts") await import("./mod1.ts") console.log("delete the cache") delete Module.Loader.cache["./mod1.ts"] await import("./mod1.ts") ``` ```shell $ deno...