Ashcon Partovi
Ashcon Partovi
It appears this has been fixed since Bun v1.0. ```js ❯ bunx autocannon -c 100 -d 10 -p 10 --debug localhost:3002 Running 10s test @ http://localhost:3002 100 connections with 10...
Duplicate of #4959
Fixed as of Bun v1.0.26. ``` ❯ bun index.test.ts 1 2 3 4 ``` ``` ❯ bun test index.test.ts bun test v1.0.26 (1f0c1c81) index.test.ts: 1 2 3 4 ✓ works...
Also, if someone wants to use `oclif`, here's a temporary workaround: ```ts // HACK: https://github.com/oven-sh/bun/issues/2081 process.stdout.getWindowSize = () => [80, 80]; process.stderr.getWindowSize = () => [80, 80]; import { Command,...
`setRawMode` was implemented in Bun v0.8.0.
These were all implemented. If you run into a "Not implemented" error, please open another issue so we can track it.
Duplicate of #5426
This is blocked until we update [`zig-clap`](https://github.com/Hejsil/zig-clap), which seems to have added support for lowecase flags.
@jwhear Could we still workaround the issue if we provide a long name for every flag? Do we have any flags that are single char only?
We need to test our WebSocket client using the [Autobahn](https://github.com/crossbario/autobahn-testsuite) test suite to fix these bugs, including this one. For updates, please upvote and subscribe to this issue: https://github.com/oven-sh/bun/issues/6686