@turbo/types 2.7.6-canary.1 → 2.7.6-canary.2
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/schemas/schema.json +5 -0
- package/src/types/config-v2.ts +1 -1
package/package.json
CHANGED
package/schemas/schema.json
CHANGED
|
@@ -592,6 +592,11 @@
|
|
|
592
592
|
"description": "Use the standard output stream.",
|
|
593
593
|
"type": "string",
|
|
594
594
|
"enum": ["stream"]
|
|
595
|
+
},
|
|
596
|
+
{
|
|
597
|
+
"description": "Use the standard output stream with timestamps. Note: This feature is experimental and may change or be removed at any time.",
|
|
598
|
+
"type": "string",
|
|
599
|
+
"enum": ["stream-with-experimental-timestamps"]
|
|
595
600
|
}
|
|
596
601
|
]
|
|
597
602
|
},
|
package/src/types/config-v2.ts
CHANGED
|
@@ -5,7 +5,7 @@ export type OutputLogs =
|
|
|
5
5
|
| "new-only"
|
|
6
6
|
| "errors-only";
|
|
7
7
|
export type EnvMode = "loose" | "strict";
|
|
8
|
-
export type UI = "tui" | "stream";
|
|
8
|
+
export type UI = "tui" | "stream" | "stream-with-experimental-timestamps";
|
|
9
9
|
/**
|
|
10
10
|
* This is a relative Unix-style path (e.g. `./src/index.ts` or `src/index.ts`). Absolute paths (e.g. `/tmp/foo`) are not valid.
|
|
11
11
|
*/
|