archgate 0.2.3 → 0.2.5
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 +13 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -43,6 +43,19 @@ npm install -g archgate
|
|
|
43
43
|
|
|
44
44
|
**Requirements:** macOS (arm64) or Linux (x86_64). Node.js is only needed to run the wrapper — the CLI itself is a standalone binary.
|
|
45
45
|
|
|
46
|
+
> **Using [proto](https://moonrepo.dev/proto)?** Add the following to `~/.proto/config.toml` and your shell profile so globals persist across Node.js version switches:
|
|
47
|
+
>
|
|
48
|
+
> ```toml
|
|
49
|
+
> # ~/.proto/config.toml
|
|
50
|
+
> [tools.npm]
|
|
51
|
+
> shared-globals-dir = true
|
|
52
|
+
> ```
|
|
53
|
+
>
|
|
54
|
+
> ```sh
|
|
55
|
+
> # ~/.zshrc or ~/.bashrc
|
|
56
|
+
> export PATH="$HOME/.proto/tools/node/globals/bin:$PATH"
|
|
57
|
+
> ```
|
|
58
|
+
|
|
46
59
|
## Quick start
|
|
47
60
|
|
|
48
61
|
```bash
|