relife2 1.0.0 → 1.0.2
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 +4 -4
- package/dist/cli.js +504 -227
- package/dist/cli.js.map +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -79,7 +79,7 @@ relife2 find start # starts every stopped config it found
|
|
|
79
79
|
**npm (any OS, Node ≥20):**
|
|
80
80
|
```sh
|
|
81
81
|
npm i -g relife2
|
|
82
|
-
relife2 --version # relife2 1.0.
|
|
82
|
+
relife2 --version # relife2 1.0.1 (node)
|
|
83
83
|
rl2 --version # alias
|
|
84
84
|
```
|
|
85
85
|
|
|
@@ -95,9 +95,9 @@ chmod +x /usr/local/bin/relife2
|
|
|
95
95
|
|
|
96
96
|
**tar.gz / rpm / deb:**
|
|
97
97
|
```sh
|
|
98
|
-
npm run dist:tar # → dist/relife2-1.0.
|
|
99
|
-
npm run dist:rpm # → dist/relife2-1.0.
|
|
100
|
-
npm run dist:deb # → dist/relife2_1.0.
|
|
98
|
+
npm run dist:tar # → dist/relife2-1.0.1-linux-x64.tar.gz (binary + README + LICENSE)
|
|
99
|
+
npm run dist:rpm # → dist/relife2-1.0.1-1.x86_64.rpm (needs fpm)
|
|
100
|
+
npm run dist:deb # → dist/relife2_1.0.1_amd64.deb (uses dpkg-deb or fpm)
|
|
101
101
|
sudo dnf install ./dist/relife2-*.rpm # Oracle Linux / RHEL / Fedora
|
|
102
102
|
sudo apt install ./dist/relife2_*_amd64.deb # Debian / Ubuntu
|
|
103
103
|
```
|