@ijfw/install 1.1.6 → 1.1.7
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 +9 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,8 +24,15 @@ IJFW configures every agent on your machine. The options below let you customize
|
|
|
24
24
|
### Uninstall
|
|
25
25
|
|
|
26
26
|
```bash
|
|
27
|
-
|
|
28
|
-
|
|
27
|
+
ijfw uninstall # preserves ~/.ijfw/memory/
|
|
28
|
+
ijfw uninstall --purge # removes memory too
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
If `ijfw` isn't on your PATH (e.g. you uninstalled the global `@ijfw/install`
|
|
32
|
+
package already), invoke the bin directly:
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
npx -p @ijfw/install ijfw-uninstall
|
|
29
36
|
```
|
|
30
37
|
|
|
31
38
|
Memory is preserved across re-runs by default.
|