| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- import { $ } from "bun"
- import path from "path"
- const rootPkgPath = path.resolve(import.meta.dir, "../../../package.json")
- const rootPkg = await Bun.file(rootPkgPath).json()
- const expectedBunVersion = rootPkg.packageManager?.split("@")[1]
- if (!expectedBunVersion) {
- throw new Error("packageManager field not found in root package.json")
- }
- if (process.versions.bun !== expectedBunVersion) {
- throw new Error(
- `This script requires bun@${expectedBunVersion}, but you are using bun@${process.versions.bun}`,
- )
- }
- const CHANNEL =
- process.env["OPENCODE_CHANNEL"] ??
- (await $`git branch --show-current`.text().then((x) => x.trim()))
- const IS_PREVIEW = CHANNEL !== "latest"
- const VERSION = await (async () => {
- if (process.env["OPENCODE_VERSION"]) return process.env["OPENCODE_VERSION"]
- if (IS_PREVIEW)
- return `0.0.0-${CHANNEL}-${new Date().toISOString().slice(0, 16).replace(/[-:T]/g, "")}`
- const version = await fetch("https://registry.npmjs.org/opencode-ai/latest")
- .then((res) => {
- if (!res.ok) throw new Error(res.statusText)
- return res.json()
- })
- .then((data: any) => data.version)
- const [major, minor, patch] = version.split(".").map((x: string) => Number(x) || 0)
- const t = process.env["OPENCODE_BUMP"]?.toLowerCase()
- if (t === "major") return `${major + 1}.0.0`
- if (t === "minor") return `${major}.${minor + 1}.0`
- return `${major}.${minor}.${patch + 1}`
- })()
- export const Script = {
- get channel() {
- return CHANNEL
- },
- get version() {
- return VERSION
- },
- get preview() {
- return IS_PREVIEW
- },
- }
- console.log(`opencode script`, JSON.stringify(Script, null, 2))
|