2
0
Эх сурвалжийг харах

bump copilot plugin version

Aiden Cline 2 сар өмнө
parent
commit
20c18689c0

+ 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 = "16"
+const CACHE_VERSION = "17"
 
 const version = await Bun.file(path.join(Global.Path.cache, "version"))
   .text()

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

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