mintree 0.1.2 → 0.1.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 +6 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,19 +16,13 @@ It is a smaller, opinionated cousin of [santree](https://github.com/santiagotosc
|
|
|
16
16
|
## Install
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
|
-
|
|
20
|
-
# `npm install -g github:user/repo` flow has a known bug in npm 10+
|
|
21
|
-
# where dependencies don't make it into the global install dir.
|
|
22
|
-
git clone git@github.com:minex-labs/mintree.git ~/dev/mintree
|
|
23
|
-
cd ~/dev/mintree
|
|
24
|
-
npm install
|
|
25
|
-
npm link
|
|
19
|
+
npm install -g mintree
|
|
26
20
|
|
|
27
|
-
#
|
|
28
|
-
#
|
|
21
|
+
# Upgrade later:
|
|
22
|
+
# npm update -g mintree
|
|
29
23
|
|
|
30
24
|
# Verify
|
|
31
|
-
mintree --version #
|
|
25
|
+
mintree --version # should match the latest published version
|
|
32
26
|
mintree doctor # checks toolchain (git, gh, claude, tmux, ...)
|
|
33
27
|
|
|
34
28
|
# Enable the shell wrapper so `mintree worktree create` and the
|
|
@@ -50,6 +44,8 @@ _MT=${XDG_CACHE_HOME:-$HOME/.cache}/mintree/init-bash.bash
|
|
|
50
44
|
EOF
|
|
51
45
|
```
|
|
52
46
|
|
|
47
|
+
> Working on mintree itself? Clone the repo, run `npm install` and `npm link` instead — that wires `mintree` to your local checkout so source edits show up after `npm run build`.
|
|
48
|
+
|
|
53
49
|
`mintree doctor` should report **all required checks pass** before you continue. The most common gaps are:
|
|
54
50
|
|
|
55
51
|
- `gh` not authenticated → `gh auth login`
|
package/package.json
CHANGED