@turbo/types 2.0.0-canary.3 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turbo/types",
3
- "version": "2.0.0-canary.3",
3
+ "version": "2.0.0",
4
4
  "description": "Turborepo types",
5
5
  "homepage": "https://turbo.build/repo",
6
6
  "license": "MIT",
@@ -135,9 +135,9 @@ export interface RootSchema extends BaseSchema {
135
135
  *
136
136
  * Documentation: https://turbo.build/repo/docs/reference/configuration#experimentalui
137
137
  *
138
- * @defaultValue `true`
138
+ * @defaultValue `"tui"`
139
139
  */
140
- ui?: boolean;
140
+ ui?: UI;
141
141
  }
142
142
 
143
143
  export type LegacyRootSchema = RootSchema & LegacyBaseSchema;
@@ -320,5 +320,7 @@ export type OutputMode =
320
320
  | "errors-only"
321
321
  | "none";
322
322
 
323
+ export type UI = "tui" | "stream";
324
+
323
325
  export type AnchoredUnixPath = string;
324
326
  export type EnvWildcard = string;