release: v0.13.2

This commit is contained in:
Dax Raad
2025-09-29 01:38:53 -04:00
parent acd33c2fc5
commit 322363f11b
15 changed files with 28 additions and 26 deletions

View File

@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@opencode-ai/sdk",
"version": "0.12.1",
"version": "0.13.2",
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit",
@@ -26,4 +26,4 @@
"publishConfig": {
"directory": "dist"
}
}
}

View File

@@ -21,9 +21,9 @@ await Bun.write("package.json", JSON.stringify(pkg, null, 2))
const snapshot = process.env["OPENCODE_SNAPSHOT"] === "true"
if (snapshot) {
await $`bun publish --tag snapshot --access public`.cwd("./dist")
await $`bun publish --tag snapshot --access public`
}
if (!snapshot) {
await $`bun publish --access public`.cwd("./dist")
await $`bun publish --access public`
}
await Bun.write("package.json", JSON.stringify(original, null, 2))