summaryrefslogtreecommitdiffhomepage
path: root/js/src/index.ts
diff options
context:
space:
mode:
authorDax Raad <[email protected]>2025-05-29 11:32:55 -0400
committerDax Raad <[email protected]>2025-05-29 11:32:55 -0400
commit6f604bd0f999a5df4ed6a57aef524f0dcf9eb356 (patch)
treeefb732ba56257a8f02edea604424821c9b687cf3 /js/src/index.ts
parent42c1cd6a852be5295aedc5c19e1a2aef45a464e3 (diff)
downloadopencode-6f604bd0f999a5df4ed6a57aef524f0dcf9eb356.tar.gz
opencode-6f604bd0f999a5df4ed6a57aef524f0dcf9eb356.zip
remove secondary codegen
Diffstat (limited to 'js/src/index.ts')
-rw-r--r--js/src/index.ts4
1 files changed, 0 insertions, 4 deletions
diff --git a/js/src/index.ts b/js/src/index.ts
index 380ea64cd..ddea15e91 100644
--- a/js/src/index.ts
+++ b/js/src/index.ts
@@ -28,10 +28,6 @@ cli.command("generate", "Generate OpenAPI and event specs").action(async () => {
path.join(dir, "openapi.json"),
JSON.stringify(specs, null, 2),
);
- await Bun.write(
- path.join(dir, "event.json"),
- JSON.stringify(Bus.specs(), null, 2),
- );
});
cli