@vibgrate/cli 1.0.81 → 1.0.82
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.
|
@@ -7384,10 +7384,7 @@ var ScanProgress = class {
|
|
|
7384
7384
|
let buf = "";
|
|
7385
7385
|
if (this.lastLineCount > 0) {
|
|
7386
7386
|
buf += `\x1B[${this.lastLineCount}A`;
|
|
7387
|
-
|
|
7388
|
-
buf += "\x1B[2K\n";
|
|
7389
|
-
}
|
|
7390
|
-
buf += `\x1B[${this.lastLineCount}A`;
|
|
7387
|
+
buf += "\x1B[J";
|
|
7391
7388
|
}
|
|
7392
7389
|
buf += "\x1B[?25h";
|
|
7393
7390
|
if (buf) process.stderr.write(buf);
|
|
@@ -7471,10 +7468,7 @@ var ScanProgress = class {
|
|
|
7471
7468
|
let buf = "";
|
|
7472
7469
|
if (this.lastLineCount > 0) {
|
|
7473
7470
|
buf += `\x1B[${this.lastLineCount}A`;
|
|
7474
|
-
|
|
7475
|
-
buf += "\x1B[2K\n";
|
|
7476
|
-
}
|
|
7477
|
-
buf += `\x1B[${this.lastLineCount}A`;
|
|
7471
|
+
buf += "\x1B[J";
|
|
7478
7472
|
}
|
|
7479
7473
|
buf += content;
|
|
7480
7474
|
process.stderr.write(buf);
|
package/dist/cli.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
3
|
baselineCommand
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-32UVQ5PT.js";
|
|
5
5
|
import {
|
|
6
6
|
VERSION,
|
|
7
7
|
computeHmac,
|
|
@@ -12,7 +12,7 @@ import {
|
|
|
12
12
|
pushCommand,
|
|
13
13
|
scanCommand,
|
|
14
14
|
writeDefaultConfig
|
|
15
|
-
} from "./chunk-
|
|
15
|
+
} from "./chunk-2E4MGFBS.js";
|
|
16
16
|
import {
|
|
17
17
|
Semaphore,
|
|
18
18
|
ensureDir,
|
|
@@ -42,7 +42,7 @@ var initCommand = new Command("init").description("Initialize vibgrate in a proj
|
|
|
42
42
|
console.log(chalk.green("\u2714") + ` Created ${chalk.bold("vibgrate.config.ts")}`);
|
|
43
43
|
}
|
|
44
44
|
if (opts.baseline) {
|
|
45
|
-
const { runBaseline } = await import("./baseline-
|
|
45
|
+
const { runBaseline } = await import("./baseline-YIHDZC5Y.js");
|
|
46
46
|
await runBaseline(rootDir);
|
|
47
47
|
}
|
|
48
48
|
console.log("");
|
package/dist/index.js
CHANGED