@jakedeichert This is such a elegant step up from `package.json` scripts, you my friend are awesome! ## Problem Concurrently run multiple commands in parallel via one single `mask` command definition. ## Example Using [`npm-run-all --parallel`](https://github.com/mysticatea/npm-run-all/blob/master/docs/npm-run-all.md#run-scripts-in-parallel) in my `package.json` ```json "scripts": { "watch": "del dist; npm-run-all --silent --parallel watch:*", "watch:nodemon": "wait-for-change dist/index.js && delay 0.1 && nodemon dist/index.js", "watch:tsc": "tsc --watch --preserveWatchOutput", }, ``` I've tried all the alternative's at the bottom of your `README.md` and I haven't been able to find something that has implemented this feature. So far `mask` is the best I've come across, then `just` shortly after. Thanks friend! =]