opencode-skills-collection 4.0.37 → 4.0.38
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
CHANGED
|
@@ -208,14 +208,17 @@ skipped silently. Re-running the pipeline with the same patches is idempotent.
|
|
|
208
208
|
|
|
209
209
|
## Development
|
|
210
210
|
|
|
211
|
-
**Requirements:**
|
|
211
|
+
**Requirements:** Bun ≥ 1.3
|
|
212
212
|
|
|
213
213
|
```bash
|
|
214
214
|
# Install dependencies
|
|
215
|
-
|
|
215
|
+
bun install
|
|
216
216
|
|
|
217
217
|
# Build
|
|
218
|
-
|
|
218
|
+
bun run build
|
|
219
|
+
|
|
220
|
+
# Test
|
|
221
|
+
bun test
|
|
219
222
|
|
|
220
223
|
# Output is in dist/
|
|
221
224
|
```
|
package/package.json
CHANGED