kajji 0.12.0 → 0.13.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.
Files changed (2) hide show
  1. package/README.md +14 -2
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -21,10 +21,13 @@ Kajji is my attempt to bring the UX of lazygit to jj, while also aiming for top-
21
21
  > **Requirements**: [jj](https://github.com/martinvonz/jj)
22
22
 
23
23
  ```bash
24
- # recommended (standalone binary, no dependencies)
24
+ # recommended if you use Homebrew
25
+ brew install eliaskc/tap/kajji
26
+
27
+ # standalone binary installer, no package manager required
25
28
  curl -fsSL https://kajji.sh/install.sh | bash
26
29
 
27
- # or via package manager
30
+ # or via JavaScript package manager
28
31
  npm install -g kajji
29
32
  bun install -g kajji
30
33
  pnpm add -g kajji
@@ -35,6 +38,15 @@ npx kajji
35
38
  bunx kajji
36
39
  ```
37
40
 
41
+ To remove kajji and its config/data:
42
+
43
+ ```bash
44
+ kajji uninstall # interactive: removes config, data, and the binary
45
+ kajji uninstall --dry-run # show what would be removed
46
+ kajji uninstall --keep-config --keep-data
47
+ kajji uninstall --force # skip the confirmation prompt
48
+ ```
49
+
38
50
  ### From source
39
51
 
40
52
  > **Requirements**: [Bun](https://bun.sh)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kajji",
3
- "version": "0.12.0",
3
+ "version": "0.13.0",
4
4
  "description": "A terminal UI for Jujutsu: the rudder for your jj",
5
5
  "bin": {
6
6
  "kajji": "./bin/kajji"
@@ -9,10 +9,10 @@
9
9
  "postinstall": "node ./script/postinstall.mjs"
10
10
  },
11
11
  "optionalDependencies": {
12
- "kajji-darwin-arm64": "0.12.0",
13
- "kajji-darwin-x64": "0.12.0",
14
- "kajji-linux-x64": "0.12.0",
15
- "kajji-linux-arm64": "0.12.0"
12
+ "kajji-darwin-arm64": "0.13.0",
13
+ "kajji-darwin-x64": "0.13.0",
14
+ "kajji-linux-x64": "0.13.0",
15
+ "kajji-linux-arm64": "0.13.0"
16
16
  },
17
17
  "repository": {
18
18
  "type": "git",