@proggarapsody/bitbottle 1.42.0 → 1.43.0
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 +12 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -626,6 +626,18 @@ when stdout is a TTY (default `less -FRX`). Set `PAGER=cat` to disable.
|
|
|
626
626
|
|
|
627
627
|
---
|
|
628
628
|
|
|
629
|
+
## Extensions
|
|
630
|
+
|
|
631
|
+
bitbottle supports third-party extensions. Extension repositories must be named `bitbottle-<name>`.
|
|
632
|
+
|
|
633
|
+
```bash
|
|
634
|
+
bitbottle extension install USER/bitbottle-<name> # install from GitHub
|
|
635
|
+
bitbottle extension install --local PATH # install from local dir
|
|
636
|
+
bitbottle extension list # list installed
|
|
637
|
+
```
|
|
638
|
+
|
|
639
|
+
---
|
|
640
|
+
|
|
629
641
|
## Contributing
|
|
630
642
|
|
|
631
643
|
See [CONTRIBUTING.md](CONTRIBUTING.md). Run `go test ./...` before sending a PR.
|