numux 2.16.2 → 2.17.1
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 +2 -0
- package/dist/man/numux.1 +15 -1
- package/dist/numux.js +720 -110
- package/dist/types.d.ts +8 -0
- package/dist/utils/color.d.ts +3 -3
- package/dist/utils/theme.d.ts +75 -0
- package/package.json +3 -6
package/README.md
CHANGED
|
@@ -228,6 +228,7 @@ export default defineConfig({
|
|
|
228
228
|
| `--no-watch` | Disable file watching even if config has watch patterns |
|
|
229
229
|
| `-t,` `--timestamps` `[<format>]` | Add timestamps to output (default HH:mm:ss.SSS, or pass a format string) |
|
|
230
230
|
| `--log-dir` `<path>` | Write per-process logs to directory |
|
|
231
|
+
| `--theme` `<light|dark|auto>` | TUI theme (auto detects terminal background) |
|
|
231
232
|
| `--debug` | Enable debug logging to .numux/debug.log |
|
|
232
233
|
| `-h,` `--help` | Show this help |
|
|
233
234
|
| `-v,` `--version` | Show version |
|
|
@@ -284,6 +285,7 @@ Top-level options apply to all processes (process-level settings override):
|
|
|
284
285
|
| `killOthersOnFail` | `boolean` | Kill all processes when any one exits with a non-zero exit code |
|
|
285
286
|
| `noWatch` | `boolean` | Disable file watching even if processes have watch patterns |
|
|
286
287
|
| `logDir` | `string` | Directory to write per-process log files |
|
|
288
|
+
| `theme` | `ThemePref` | TUI color theme. `'auto'` detects the terminal background via OSC 11 (falling back to `COLORFGBG` then dark). `'light'`/`'dark'` skip detection. |
|
|
287
289
|
<!-- /generated:config-global -->
|
|
288
290
|
|
|
289
291
|
```ts
|
package/dist/man/numux.1
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
.TH "NUMUX" "1" "
|
|
1
|
+
.TH "NUMUX" "1" "June 2026" "2.17.1" "numux manual"
|
|
2
2
|
.SH "NAME"
|
|
3
3
|
\fBnumux\fR
|
|
4
4
|
.P
|
|
@@ -349,6 +349,12 @@ Write per\-process logs to directory
|
|
|
349
349
|
T}
|
|
350
350
|
_
|
|
351
351
|
T{
|
|
352
|
+
\fB\-\-theme\fP `<light
|
|
353
|
+
T}|T{
|
|
354
|
+
dark
|
|
355
|
+
T}
|
|
356
|
+
_
|
|
357
|
+
T{
|
|
352
358
|
\fB\-\-debug\fP
|
|
353
359
|
T}|T{
|
|
354
360
|
Enable debug logging to \.numux/debug\.log
|
|
@@ -538,6 +544,14 @@ T}|T{
|
|
|
538
544
|
T}|T{
|
|
539
545
|
Directory to write per\-process log files
|
|
540
546
|
T}
|
|
547
|
+
_
|
|
548
|
+
T{
|
|
549
|
+
\fBtheme\fP
|
|
550
|
+
T}|T{
|
|
551
|
+
\fBThemePref\fP
|
|
552
|
+
T}|T{
|
|
553
|
+
TUI color theme\. \fB'auto'\fP detects the terminal background via OSC 11 (falling back to \fBCOLORFGBG\fP then dark)\. \fB'light'\fP/\fB'dark'\fP skip detection\.
|
|
554
|
+
T}
|
|
541
555
|
.TE
|
|
542
556
|
<!\-\- /generated:config\-global \-\->
|
|
543
557
|
|