@xinleibird/bridge-opencode 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.
Binary file
Binary file
Binary file
package/bridge.ts CHANGED
@@ -67,7 +67,9 @@ export const BridgePlugin: Plugin = async ({ directory }) => {
67
67
  for (const filePath of call.filePaths) {
68
68
  const status = await checkBuffer(filePath);
69
69
  if (status.hasUnsavedChanges && status.isCurrent) {
70
- throw new Error("CANNOT PROCEED: unsaved changes in Neovim — you MUST stop all bash and edit operations");
70
+ throw new Error(
71
+ "STOP: Cannot apply changes — Neovim has unsaved edits. DO NOT attempt to resolve this yourself. Wait for the user to save or close the file. DO NOT use the Built-In Tools resolve this.",
72
+ );
71
73
  }
72
74
  }
73
75
 
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@xinleibird/bridge-opencode",
3
- "version": "0.1.5",
4
- "type": "module",
5
- "main": "bridge.ts",
3
+ "version": "0.1.7",
6
4
  "repository": {
7
5
  "type": "git",
8
6
  "url": "https://github.com/xinleibird/bridge-opencode"
9
7
  },
8
+ "type": "module",
9
+ "main": "bridge.ts",
10
10
  "exports": {
11
11
  ".": {
12
12
  "import": "./bridge.ts",