Aiden Cline 3 недель назад
Родитель
Сommit
026b3cc88d
2 измененных файлов с 2 добавлено и 2 удалено
  1. 1 1
      packages/opencode/src/global/index.ts
  2. 1 1
      packages/opencode/src/plugin/index.ts

+ 1 - 1
packages/opencode/src/global/index.ts

@@ -33,7 +33,7 @@ await Promise.all([
   fs.mkdir(Global.Path.bin, { recursive: true }),
 ])
 
-const CACHE_VERSION = "19"
+const CACHE_VERSION = "20"
 
 const version = await Bun.file(path.join(Global.Path.cache, "version"))
   .text()

+ 1 - 1
packages/opencode/src/plugin/index.ts

@@ -15,7 +15,7 @@ import { CopilotAuthPlugin } from "./copilot"
 export namespace Plugin {
   const log = Log.create({ service: "plugin" })
 
-  const BUILTIN = ["[email protected]0", "@gitlab/[email protected]"]
+  const BUILTIN = ["[email protected]2", "@gitlab/[email protected]"]
 
   // Built-in plugins that are directly imported (not installed from npm)
   const INTERNAL_PLUGINS: PluginInstance[] = [CodexAuthPlugin, CopilotAuthPlugin]