sentry-tui 0.1.0 → 0.2.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 +9 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -40,6 +40,15 @@ binary arrives as an optional dependency, so you download one binary rather
|
|
|
40
40
|
than four. Binaries are also attached to every
|
|
41
41
|
[release](https://github.com/billyvg/sentry-tui/releases).
|
|
42
42
|
|
|
43
|
+
The npm install **keeps itself current**. Launching starts the app
|
|
44
|
+
immediately on the build you already have, and a background process fetches
|
|
45
|
+
anything newer for next time — so a release reaches you without `npm i -g`
|
|
46
|
+
again, and without ever making you wait on a 24MB download. Nothing about
|
|
47
|
+
starting the app touches the network. Set `SENTRY_TUI_NO_UPDATE=1` to pin
|
|
48
|
+
whatever you have; `CI` is treated the same way. Homebrew and the shell
|
|
49
|
+
installer do not self-update — `brew upgrade` and re-running `install.sh` are
|
|
50
|
+
their update paths.
|
|
51
|
+
|
|
43
52
|
Supported: macOS and Linux, on arm64 and x64. Windows and musl-based Linux
|
|
44
53
|
(Alpine) aren't built — run from source there.
|
|
45
54
|
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"url": "https://github.com/billyvg/sentry-tui/issues"
|
|
12
12
|
},
|
|
13
13
|
"name": "sentry-tui",
|
|
14
|
-
"version": "0.
|
|
14
|
+
"version": "0.2.0",
|
|
15
15
|
"keywords": [
|
|
16
16
|
"sentry",
|
|
17
17
|
"tui",
|
|
@@ -34,6 +34,6 @@
|
|
|
34
34
|
"node": ">=18.0.0"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@billyvg/sentry-tui": "0.
|
|
37
|
+
"@billyvg/sentry-tui": "0.2.0"
|
|
38
38
|
}
|
|
39
39
|
}
|