@kitlangton/ghui 0.4.2 → 0.4.3
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 +11 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -8,16 +8,26 @@ Terminal UI for keeping up with your open GitHub pull requests across repositori
|
|
|
8
8
|
|
|
9
9
|
## Install
|
|
10
10
|
|
|
11
|
+
Homebrew is the recommended install path on macOS and Linux. It installs a standalone `ghui` binary, so you do not need Bun or npm at runtime.
|
|
12
|
+
|
|
11
13
|
```bash
|
|
12
14
|
brew install kitlangton/tap/ghui
|
|
13
15
|
```
|
|
14
16
|
|
|
15
|
-
|
|
17
|
+
Upgrade with:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
brew upgrade ghui
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
Or install with npm:
|
|
16
24
|
|
|
17
25
|
```bash
|
|
18
26
|
npm install -g @kitlangton/ghui
|
|
19
27
|
```
|
|
20
28
|
|
|
29
|
+
The npm package also installs a platform-specific binary package and does not require Bun.
|
|
30
|
+
|
|
21
31
|
Requirements:
|
|
22
32
|
|
|
23
33
|
- GitHub CLI installed and authenticated with `gh auth login`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kitlangton/ghui",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.3",
|
|
4
4
|
"description": "Terminal UI for GitHub pull requests",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -27,10 +27,10 @@
|
|
|
27
27
|
"LICENSE"
|
|
28
28
|
],
|
|
29
29
|
"optionalDependencies": {
|
|
30
|
-
"@kitlangton/ghui-darwin-arm64": "0.4.
|
|
31
|
-
"@kitlangton/ghui-darwin-x64": "0.4.
|
|
32
|
-
"@kitlangton/ghui-linux-arm64": "0.4.
|
|
33
|
-
"@kitlangton/ghui-linux-x64": "0.4.
|
|
30
|
+
"@kitlangton/ghui-darwin-arm64": "0.4.3",
|
|
31
|
+
"@kitlangton/ghui-darwin-x64": "0.4.3",
|
|
32
|
+
"@kitlangton/ghui-linux-arm64": "0.4.3",
|
|
33
|
+
"@kitlangton/ghui-linux-x64": "0.4.3"
|
|
34
34
|
},
|
|
35
35
|
"publishConfig": {
|
|
36
36
|
"access": "public",
|