David Sherret
David Sherret
Actually, I'm not too sure about this. It seems too specific and there's a lot of parameters.
@cedric-spinergie that specifically is not a bug because the "preferSingleLine" means for multiple decorators: https://dprint.dev/playground/#code/KYDwDg9gTgLgBAYwDYEMDOa4FkCeBhVDOAbwCg44ABXAEWAWhRmgAoBKKmYNeAWxwBqKJAFdgcALxwARPwDKMKNIDcpAL5A/config/N4KABGBEA2CWB2BTA6rAJgFwBaQFxgEYAmABjIBpwo1EBjAewCcBDDJgZwDoAHRxAM0SMAyggDm0RABkEiPGAyMArohABfEEA/language/typescript
This would need to be done in the `ignore` crate (https://github.com/dprint/dprint/blob/86a20b65625485c29273e5da986126cd9c678ebd/crates/dprint/Cargo.toml#L27). (Side note: In Deno there's a custom implementation for this and I did something similar to what you pointed...
The issue here is it's a synchronous require of esm and it looks like the tokio event loop isn't being driven. deno_graph spawns tasks in tokio and those don't seem...
No, upgrading wasmer almost always requires manual changes. In this case the upgrade was blocked by two fixes in wasmer.
> Also, can you list the SWC passes used by Deno? IIRC, I added an in-tree testing for transforms used by a team, but I'm not sure if it was...
I've discovered a way to do this is to do: ```rs let engine: wasmer::Engine = engine.into(); let engine_ref = EngineRef::new(&engine); ``` That said, this is not very discoverable. I feel...
Probably running with `--unstable-unsafe-proto` will make it work: https://docs.deno.com/runtime/reference/cli/unstable_flags/#--unstable-unsafe-proto
cc @g-plane