startall 0.0.1 → 0.0.3

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.
Files changed (3) hide show
  1. package/README.md +11 -1
  2. package/index.js +1707 -423
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -114,7 +114,17 @@ Existing tools either:
114
114
  - Built with [OpenTUI](https://github.com/openmux/opentui) for a modern terminal UI
115
115
  - Uses standard Node.js `child_process` (no PTY required = Windows support)
116
116
  - Parses `package.json` scripts automatically
117
- - Saves configuration in `startall.json` with structure: `{ defaultSelection: [], ignore: [] }`
117
+ - Saves configuration in `startall.json`:
118
+ ```json
119
+ {
120
+ "defaultSelection": ["frontend", "backend"],
121
+ "include": ["dev:*"],
122
+ "ignore": ["*:test"]
123
+ }
124
+ ```
125
+ - `include` (optional): if defined, only scripts matching these patterns are shown
126
+ - `ignore`: scripts matching these patterns are hidden
127
+ - Both support wildcards (`*`)
118
128
 
119
129
  ## Roadmap
120
130