upgrade to bun 1.3.0

This commit is contained in:
Dax Raad
2025-10-10 17:37:03 -04:00
parent 34ec6cc978
commit 9da95cb805
15 changed files with 32 additions and 23 deletions

View File

@@ -2,8 +2,8 @@
import { $ } from "bun"
import { createOpencode } from "@opencode-ai/sdk"
if (process.versions.bun !== "1.2.21") {
throw new Error("This script requires bun@1.2.21")
if (process.versions.bun !== "1.3.0") {
throw new Error("This script requires bun@1.3.0")
}
const notes = [] as string[]