Skip to content

Commit 258e00b

Browse files
chore(ui): disable tui as the default (#8631)
### Description <!-- ✍️ Write a short summary of your work. If necessary, include relevant screenshots. --> ### Testing Instructions <!-- Give a quick description of steps to test your changes. -->
1 parent 66c2f55 commit 258e00b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/turborepo-lib/src/config.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ impl ConfigurationOptions {
272272
}
273273

274274
pub fn ui(&self) -> bool {
275-
self.ui.unwrap_or(true) && atty::is(atty::Stream::Stdout)
275+
self.ui.unwrap_or(false) && atty::is(atty::Stream::Stdout)
276276
}
277277
}
278278

packages/turbo-types/src/types/config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ export interface RootSchema extends BaseSchema {
124124
*
125125
* Documentation: https://turbo.build/repo/docs/reference/configuration#ui
126126
*
127-
* @defaultValue `"tui"`
127+
* @defaultValue `"stream"`
128128
*/
129129
ui?: UI;
130130
}

0 commit comments

Comments
 (0)