opencode-with-claude 1.10.0 → 1.10.1
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/README.md +3 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -89,9 +89,8 @@ opencode
|
|
|
89
89
|
## Updating
|
|
90
90
|
|
|
91
91
|
- **Homebrew:** `brew upgrade opencode-with-claude`. The release workflow
|
|
92
|
-
bumps [`
|
|
93
|
-
|
|
94
|
-
tap, so `brew update && brew upgrade` tracks new releases.
|
|
92
|
+
bumps the formula in [`ianjwhite99/homebrew-tap`](https://github.com/ianjwhite99/homebrew-tap)
|
|
93
|
+
after every npm publish, so `brew update && brew upgrade` tracks new releases.
|
|
95
94
|
- **npm:** `npm update -g opencode-with-claude`. Note that OpenCode caches
|
|
96
95
|
plugins it installs by package name; if a new version is not picked up,
|
|
97
96
|
clear `~/.cache/opencode/node_modules/opencode-with-claude` and restart.
|
|
@@ -233,10 +232,8 @@ opencode-with-claude/
|
|
|
233
232
|
├── test/
|
|
234
233
|
│ ├── run.sh # Test runner
|
|
235
234
|
│ └── opencode.json # Test config
|
|
236
|
-
├── Formula/
|
|
237
|
-
│ └── opencode-with-claude.rb # Homebrew formula (mirrored to ianjwhite99/homebrew-tap)
|
|
238
235
|
├── scripts/
|
|
239
|
-
│ └── update-homebrew-formula.sh # Bumps the formula after an npm release
|
|
236
|
+
│ └── update-homebrew-formula.sh # Bumps the Homebrew formula (in ianjwhite99/homebrew-tap) after an npm release
|
|
240
237
|
├── package.json
|
|
241
238
|
└── tsconfig.json
|
|
242
239
|
```
|
package/package.json
CHANGED