Replies: 1 comment
-
Sounds like a similar discussion as here: #9091 I'm wondering what behavior you'd expect to see when running something like |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Goals
the
ui
field inturbo.json
applies to all turbo tasks, but certain types of tasks are more approriate with either UI. this feature would allow the user to specifyui
for specific tasks.for example, a
dev
task is usually long-running and even interactive, so it's esential that it uses thetui
. but a more streamlined task likeformat
will typically output very few (if any) lines of text, so having all of its outputs aggregated in thestream
way is much more convenient than replacing the entire screen with a faux tabbed terminal that will just close itself after a few seconds.Proposal
each task object could simply have a
ui
key, which would override the identical rootui
key.Beta Was this translation helpful? Give feedback.
All reactions