@vibgrate/cli 1.0.87 → 1.0.88
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/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-2APTTWP4.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-GEQ6YF4F.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-AHO3BW5T.js");
|
|
46
46
|
await runBaseline(rootDir);
|
|
47
47
|
}
|
|
48
48
|
console.log("");
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -7436,10 +7436,6 @@ var ScanProgress = class {
|
|
|
7436
7436
|
return;
|
|
7437
7437
|
}
|
|
7438
7438
|
const lines = [];
|
|
7439
|
-
for (const step of this.steps) {
|
|
7440
|
-
lines.push(this.renderStep(step));
|
|
7441
|
-
}
|
|
7442
|
-
lines.push("");
|
|
7443
7439
|
const totalWeight = this.steps.reduce((sum, s) => sum + (s.weight ?? 1), 0);
|
|
7444
7440
|
let completedWeight = 0;
|
|
7445
7441
|
for (const step of this.steps) {
|
|
@@ -7469,6 +7465,10 @@ var ScanProgress = class {
|
|
|
7469
7465
|
lines.push("");
|
|
7470
7466
|
lines.push(this.renderStats());
|
|
7471
7467
|
lines.push("");
|
|
7468
|
+
for (const step of this.steps) {
|
|
7469
|
+
lines.push(this.renderStep(step));
|
|
7470
|
+
}
|
|
7471
|
+
lines.push("");
|
|
7472
7472
|
const content = lines.join("\n") + "\n";
|
|
7473
7473
|
const rowCount = this.countRenderedRows(lines);
|
|
7474
7474
|
if (content === this.lastFrame && this.lastRowCount === rowCount) {
|