@aureuma/si 0.53.1 → 0.54.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 +7 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
Install the SI CLI with npm:
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
|
+
mkdir -p "$HOME/.npm-global"
|
|
7
|
+
npm config set prefix "$HOME/.npm-global"
|
|
8
|
+
export PATH="$HOME/.npm-global/bin:$PATH"
|
|
6
9
|
npm install -g @aureuma/si
|
|
7
10
|
```
|
|
8
11
|
|
|
@@ -12,6 +15,10 @@ Then run:
|
|
|
12
15
|
si --help
|
|
13
16
|
```
|
|
14
17
|
|
|
18
|
+
If you previously installed `si` into `/usr/local/bin`, remove that older binary or
|
|
19
|
+
ensure your user-owned npm prefix comes first on `PATH`, otherwise your shell may
|
|
20
|
+
continue launching the stale `/usr/local/bin/si`.
|
|
21
|
+
|
|
15
22
|
## How it works
|
|
16
23
|
|
|
17
24
|
This package installs a lightweight launcher script. On first run it downloads
|
package/package.json
CHANGED