rird 1.1.9 → 1.1.11

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
- "version": "1.1.9",
3
+ "version": "1.1.11",
4
4
  "name": "rird",
5
5
  "type": "module",
6
6
  "scripts": {
package/src/bun/index.ts CHANGED
@@ -43,7 +43,7 @@ export namespace BunProc {
43
43
  stderr,
44
44
  })
45
45
  if (code !== 0) {
46
- throw new Error(`Command failed with exit code ${result.exitCode}`)
46
+ throw new Error(`Command failed with exit code ${result.exitCode}: ${stderr}`)
47
47
  }
48
48
  return result
49
49
  }
@@ -28,8 +28,8 @@ export namespace Plugin {
28
28
  }
29
29
  const plugins = [...(config.plugin ?? [])]
30
30
  if (!Flag.OPENCODE_DISABLE_DEFAULT_PLUGINS) {
31
- plugins.push("RIRD-copilot-auth@0.0.9")
32
- plugins.push("RIRD-anthropic-auth@0.0.5")
31
+ plugins.push("opencode-copilot-auth@0.0.9")
32
+ plugins.push("opencode-anthropic-auth@0.0.5")
33
33
  }
34
34
  for (let plugin of plugins) {
35
35
  log.info("loading plugin", { path: plugin })