@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 +1 -1
- package/src/types/config.ts +4 -2
package/package.json
CHANGED
package/src/types/config.ts
CHANGED
|
@@ -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 `
|
|
138
|
+
* @defaultValue `"tui"`
|
|
139
139
|
*/
|
|
140
|
-
ui?:
|
|
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;
|