I have a conventional Turborepo setup and running turbo dev in the root will run the dev script in all my applications as expected and consolidate them the in the classic TUI output window. One of my apps needs two concurrently running tasks as well which are basically a dev server for another tool and a tunnel for webhooks which I have been manually starting in separate terminal windows for now.
Technically I am aware that I could literally use concurrently for the app's dev script but dislike that the console output of the three would be mixed together. Instead, I'd prefer to have the other two tasks appear in the TUI list as well to be able to nicely go through the logs and switch between them. If I am not mistaken though, persistent tasks cannot be dependencies so I was wondering whether there is a reasonable setup to instruct Turborepo to run the additional concurrent tasks just like all the other dev tasks in one go.