1 parent d6aa22f commit 3de3cb4Copy full SHA for 3de3cb4
2 files changed
.gitignore
@@ -32,3 +32,5 @@ report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json
32
33
# Finder (MacOS) folder config
34
.DS_Store
35
+src/hello.js
36
+src/all.txt
src/api.ts
@@ -462,6 +462,7 @@ export class BM2 extends EventEmitter<BM2Events> {
462
* raw response. Useful for custom or future command types.
463
*/
464
async send(message: DaemonMessage): Promise<DaemonResponse> {
465
+
466
if (!message.id) {
467
message.id = generateId();
468
}
@@ -473,7 +474,6 @@ export class BM2 extends EventEmitter<BM2Events> {
473
474
method: "POST",
475
headers: { "Content-Type": "application/json" },
476
body,
- // @ts-expect-error — Bun-specific option for Unix socket
477
unix: DAEMON_SOCKET,
478
});
479
0 commit comments