Cody Casterline
Cody Casterline
+1 to @mmorainville-fountain's request here. I was just reading about the great new features in v4.1, but because we're stuck w/ 3.0 in our codebase, we can't yet use 4.1....
Same problem here. I see this type declaration: ```ts declare type HandlerFunc = (args: Output) => any; ``` But the `Output` type isn't exported. If it were, we could easily...
See also: #1432
> atm bare specifiers for npm packages aren't supported, but I think we should Agreed. Or, **if they're not supported, deno should throw an error/warning** when trying to add such...
Was brainstorming about this, and maybe this is a separate ticket for some point in the future, but it would be handy to say how a workspace member is "imported"....
New user, came across your post while looking for a different issue. Your problem is that you're telling your *shell* to `sleep 100` by typing that to it. But `vhs`...
Well, ok the ascii character is supposed to be "DEL", but it corresponds to "backspace" on my keyboard. And there wasn't a parser for KeyCode::Backspace, so that's what I updated...
I may want to release a library that depends on this fix this weekend. Any chance of releasing this fix? Or should I publish a fork?
The library: https://crates.io/crates/ratatui-wasm-backend I published it using v0.2.0 with [a warning to use my patched version][1] if folks want to use the parser. [1]: https://github.com/NfNitLoop/ratatui-wasm-backend/blob/a65e00877c4c9a3469671c25945b43f1585a8f4a/crates/ratatui-wasm-backend/Cargo.toml#L16-L24
For the breaking change? Not really. That would require a major semver bump. For the "is this keycode equivalent to Ctrl-C" part, you're welcome to yoink my implementation from here...