diff options
| author | Aiden Cline <[email protected]> | 2026-01-28 01:31:01 -0500 |
|---|---|---|
| committer | Aiden Cline <[email protected]> | 2026-01-28 01:31:01 -0500 |
| commit | 026b3cc88d1f6db1219d3d3da5e285612dc3739b (patch) | |
| tree | eb94d66bbb00bd4268acf938a2760b552296438a | |
| parent | 28e5557bf471014ae7b145a052e00ffab604050a (diff) | |
| download | opencode-026b3cc88d1f6db1219d3d3da5e285612dc3739b.tar.gz opencode-026b3cc88d1f6db1219d3d3da5e285612dc3739b.zip | |
bump plugin version
| -rw-r--r-- | packages/opencode/src/global/index.ts | 2 | ||||
| -rw-r--r-- | packages/opencode/src/plugin/index.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/opencode/src/global/index.ts b/packages/opencode/src/global/index.ts index ade3e5d52..1504c7814 100644 --- a/packages/opencode/src/global/index.ts +++ b/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() diff --git a/packages/opencode/src/plugin/index.ts b/packages/opencode/src/plugin/index.ts index 691fff4b2..c11ad01a7 100644 --- a/packages/opencode/src/plugin/index.ts +++ b/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]", "@gitlab/[email protected]"] + const BUILTIN = ["[email protected]", "@gitlab/[email protected]"] // Built-in plugins that are directly imported (not installed from npm) const INTERNAL_PLUGINS: PluginInstance[] = [CodexAuthPlugin, CopilotAuthPlugin] |
