summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAiden Cline <[email protected]>2025-12-07 22:42:35 -0600
committerAiden Cline <[email protected]>2025-12-07 22:42:35 -0600
commitf5a77c8cd81064197ea44d65fe37f8565a544973 (patch)
tree41b4e6a106db5806dd71380b3e9610ca0829466b
parentbc524eeb444cbb5aa285c3a21be6480ab57e12c4 (diff)
downloadopencode-f5a77c8cd81064197ea44d65fe37f8565a544973.tar.gz
opencode-f5a77c8cd81064197ea44d65fe37f8565a544973.zip
bump plugin versions
-rw-r--r--packages/opencode/src/global/index.ts2
-rw-r--r--packages/opencode/src/plugin/index.ts4
2 files changed, 3 insertions, 3 deletions
diff --git a/packages/opencode/src/global/index.ts b/packages/opencode/src/global/index.ts
index 04a9093a5..2504a47dc 100644
--- a/packages/opencode/src/global/index.ts
+++ b/packages/opencode/src/global/index.ts
@@ -30,7 +30,7 @@ await Promise.all([
fs.mkdir(Global.Path.bin, { recursive: true }),
])
-const CACHE_VERSION = "13"
+const CACHE_VERSION = "14"
const version = await Bun.file(path.join(Global.Path.cache, "version"))
.text()
diff --git a/packages/opencode/src/plugin/index.ts b/packages/opencode/src/plugin/index.ts
index af5698220..b45ea912d 100644
--- a/packages/opencode/src/plugin/index.ts
+++ b/packages/opencode/src/plugin/index.ts
@@ -28,8 +28,8 @@ export namespace Plugin {
}
const plugins = [...(config.plugin ?? [])]
if (!Flag.OPENCODE_DISABLE_DEFAULT_PLUGINS) {
- plugins.push("[email protected]")
- plugins.push("[email protected]")
+ plugins.push("[email protected]")
+ plugins.push("[email protected]")
}
for (let plugin of plugins) {
log.info("loading plugin", { path: plugin })