opencode-branch-memory-manager 0.1.5 → 0.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2265,6 +2265,8 @@ var BranchMemoryPlugin = async ({ project, client, $, directory, worktree }) =>
2265
2265
  }
2266
2266
  };
2267
2267
  };
2268
+ var branch_memory_plugin_default = BranchMemoryPlugin;
2268
2269
  export {
2270
+ branch_memory_plugin_default as default,
2269
2271
  BranchMemoryPlugin
2270
2272
  };
@@ -13,7 +13,7 @@
13
13
  "name": "branch-memory-manager",
14
14
  "source": ".",
15
15
  "description": "Automatically manages branch-specific context with auto-save and auto-load. Never lose your development context when switching git branches.",
16
- "version": "0.1.5",
16
+ "version": "0.1.7",
17
17
  "author": {
18
18
  "name": "Davidcreador"
19
19
  },
@@ -138,3 +138,6 @@ export const BranchMemoryPlugin: Plugin = async ({ project, client, $, directory
138
138
  },
139
139
  }
140
140
  }
141
+
142
+ // Export as default for OpenCode plugin loader
143
+ export default BranchMemoryPlugin