We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e563d20 commit 56ebca3Copy full SHA for 56ebca3
crates/turborepo-lib/src/task_graph/visitor.rs
@@ -914,6 +914,11 @@ impl ExecContext {
914
cmd.env("TURBO_HASH", &self.task_hash);
915
// enable task access tracing
916
917
+ // Allow downstream tools to detect if the task is being ran with TUI
918
+ if self.experimental_ui {
919
+ cmd.env("TURBO_IS_TUI", "true");
920
+ }
921
+
922
// set the trace file env var - frameworks that support this can use it to
923
// write out a trace file that we will use to automatically cache the task
924
if self.task_access.is_enabled() {
0 commit comments