numux 2.12.0 → 2.13.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 CHANGED
@@ -220,8 +220,8 @@ export default defineConfig({
220
220
  | `-e,` `--env-file` `<path|false>` | Env file path, or "false" to disable env file loading |
221
221
  | `--config` `<path>` | Config file path (default: auto-detect) |
222
222
  | `-p,` `--prefix` | Prefixed output mode (no TUI, for CI/scripts) |
223
- | `--only` `<a,b,...>` | Only run these processes (+ their dependencies) |
224
- | `--exclude` `<a,b,...>` | Exclude these processes |
223
+ | `-o,` `--only` `<a,b,...>` | Only run these processes (+ their dependencies) |
224
+ | `-x,` `--exclude` `<a,b,...>` | Exclude these processes |
225
225
  | `--kill-others` | Kill all processes when any exits (regardless of exit code) |
226
226
  | `--kill-others-on-fail` | Kill all processes when any exits with non-zero code |
227
227
  | `--max-restarts` `<n>` | Max auto-restarts for crashed processes |
package/dist/man/numux.1 CHANGED
@@ -1,4 +1,4 @@
1
- .TH "NUMUX" "1" "April 2026" "2.12.0" "numux manual"
1
+ .TH "NUMUX" "1" "April 2026" "2.13.0" "numux manual"
2
2
  .SH "NAME"
3
3
  \fBnumux\fR
4
4
  .P
@@ -301,13 +301,13 @@ Prefixed output mode (no TUI, for CI/scripts)
301
301
  T}
302
302
  _
303
303
  T{
304
- \fB\-\-only\fP \fB<a,b,\.\.\.>\fP
304
+ \fB\-o,\fP \fB\-\-only\fP \fB<a,b,\.\.\.>\fP
305
305
  T}|T{
306
306
  Only run these processes (+ their dependencies)
307
307
  T}
308
308
  _
309
309
  T{
310
- \fB\-\-exclude\fP \fB<a,b,\.\.\.>\fP
310
+ \fB\-x,\fP \fB\-\-exclude\fP \fB<a,b,\.\.\.>\fP
311
311
  T}|T{
312
312
  Exclude these processes
313
313
  T}
package/dist/numux.js CHANGED
@@ -238,8 +238,8 @@ export default defineConfig({
238
238
  | \`-e,\` \`--env-file\` \`<path|false>\` | Env file path, or "false" to disable env file loading |
239
239
  | \`--config\` \`<path>\` | Config file path (default: auto-detect) |
240
240
  | \`-p,\` \`--prefix\` | Prefixed output mode (no TUI, for CI/scripts) |
241
- | \`--only\` \`<a,b,...>\` | Only run these processes (+ their dependencies) |
242
- | \`--exclude\` \`<a,b,...>\` | Exclude these processes |
241
+ | \`-o,\` \`--only\` \`<a,b,...>\` | Only run these processes (+ their dependencies) |
242
+ | \`-x,\` \`--exclude\` \`<a,b,...>\` | Exclude these processes |
243
243
  | \`--kill-others\` | Kill all processes when any exits (regardless of exit code) |
244
244
  | \`--kill-others-on-fail\` | Kill all processes when any exits with non-zero code |
245
245
  | \`--max-restarts\` \`<n>\` | Max auto-restarts for crashed processes |
@@ -541,7 +541,7 @@ var init_help = __esm(() => {
541
541
  var require_package = __commonJS((exports, module) => {
542
542
  module.exports = {
543
543
  name: "numux",
544
- version: "2.12.0",
544
+ version: "2.13.0",
545
545
  description: "Terminal multiplexer with dependency orchestration",
546
546
  type: "module",
547
547
  license: "MIT",
@@ -803,6 +803,7 @@ var FLAGS = [
803
803
  {
804
804
  type: "value",
805
805
  long: "--only",
806
+ short: "-o",
806
807
  key: "only",
807
808
  description: "Only run these processes (+ their dependencies)",
808
809
  valueName: "<a,b,...>",
@@ -812,6 +813,7 @@ var FLAGS = [
812
813
  {
813
814
  type: "value",
814
815
  long: "--exclude",
816
+ short: "-x",
815
817
  key: "exclude",
816
818
  description: "Exclude these processes",
817
819
  valueName: "<a,b,...>",
@@ -1061,7 +1063,10 @@ function parseArgs(argv) {
1061
1063
  const value = flag.parse ? flag.parse(next, arg) : next;
1062
1064
  const current = result[flag.key];
1063
1065
  if (Array.isArray(current)) {
1064
- current.push(value);
1066
+ if (Array.isArray(value))
1067
+ current.push(...value);
1068
+ else
1069
+ current.push(value);
1065
1070
  } else {
1066
1071
  result[flag.key] = value;
1067
1072
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "numux",
3
- "version": "2.12.0",
3
+ "version": "2.13.0",
4
4
  "description": "Terminal multiplexer with dependency orchestration",
5
5
  "type": "module",
6
6
  "license": "MIT",