Skip to content

Commit

Permalink
chore(ui): disable tui as the default (#8631)
Browse files Browse the repository at this point in the history
### 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.
-->
  • Loading branch information
chris-olszewski committed Jun 28, 2024
1 parent 66c2f55 commit 258e00b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/turborepo-lib/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ impl ConfigurationOptions {
}

pub fn ui(&self) -> bool {
self.ui.unwrap_or(true) && atty::is(atty::Stream::Stdout)
self.ui.unwrap_or(false) && atty::is(atty::Stream::Stdout)
}
}

Expand Down
2 changes: 1 addition & 1 deletion packages/turbo-types/src/types/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export interface RootSchema extends BaseSchema {
*
* Documentation: https://turbo.build/repo/docs/reference/configuration#ui
*
* @defaultValue `"tui"`
* @defaultValue `"stream"`
*/
ui?: UI;
}
Expand Down

0 comments on commit 258e00b

Please sign in to comment.