Skip to content

Commit 06ac1be

Browse files
committed
upgrade to bun 1.3.1
1 parent 05489bc commit 06ac1be

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "AI-powered development tool",
55
"private": true,
66
"type": "module",
7-
"packageManager": "bun@1.3.0",
7+
"packageManager": "bun@1.3.1",
88
"scripts": {
99
"dev": "bun run --cwd packages/opencode --conditions=browser src/index.ts",
1010
"typecheck": "bun turbo typecheck",

packages/script/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { $ } from "bun"
22

3-
if (process.versions.bun !== "1.3.0") {
4-
throw new Error("This script requires bun@1.3.0")
3+
if (process.versions.bun !== "1.3.1") {
4+
throw new Error("This script requires bun@1.3.1")
55
}
66

77
const CHANNEL =

0 commit comments

Comments
 (0)