mirror of
https://github.com/sst/opencode.git
synced 2025-12-23 10:11:41 +00:00
9 lines
244 B
TypeScript
Executable file
9 lines
244 B
TypeScript
Executable file
#!/usr/bin/env bun
|
|
|
|
const version = process.env["OPENCODE_VERSION"]
|
|
if (!version) {
|
|
throw new Error("OPENCODE_VERSION is required")
|
|
}
|
|
|
|
await import(`../packages/sdk/stainless/generate.ts`)
|
|
await import(`../packages/sdk/js/script/publish.ts`)
|