We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 374e5dd commit a759e16Copy full SHA for a759e16
2 files changed
.changeset/bright-lions-suffer.md
@@ -0,0 +1,5 @@
1
+---
2
+"lingo.dev": patch
3
4
+
5
+fix(cli): preserve terminal scrollback buffer during run command
packages/cli/src/cli/utils/ui.ts
@@ -10,7 +10,7 @@ function isCI(): boolean {
10
}
11
12
export async function renderClear() {
13
- console.log("\x1Bc");
+ process.stdout.write("\x1b[2J\x1b[H");
14
15
16
export async function renderSpacer() {
0 commit comments