@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.
@@ -1,8 +1,8 @@
1
1
  import {
2
2
  baselineCommand,
3
3
  runBaseline
4
- } from "./chunk-DEPG5EIH.js";
5
- import "./chunk-W6TXQI4D.js";
4
+ } from "./chunk-32UVQ5PT.js";
5
+ import "./chunk-2E4MGFBS.js";
6
6
  import "./chunk-JQHUH6A3.js";
7
7
  export {
8
8
  baselineCommand,
@@ -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
- for (let i = 0; i < this.lastLineCount; i++) {
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
- for (let i = 0; i < this.lastLineCount; i++) {
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);
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  runScan
3
- } from "./chunk-W6TXQI4D.js";
3
+ } from "./chunk-2E4MGFBS.js";
4
4
  import {
5
5
  writeJsonFile
6
6
  } from "./chunk-JQHUH6A3.js";
package/dist/cli.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  baselineCommand
4
- } from "./chunk-DEPG5EIH.js";
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-W6TXQI4D.js";
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-5AZAIOQ6.js");
45
+ const { runBaseline } = await import("./baseline-YIHDZC5Y.js");
46
46
  await runBaseline(rootDir);
47
47
  }
48
48
  console.log("");
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@ import {
5
5
  formatText,
6
6
  generateFindings,
7
7
  runScan
8
- } from "./chunk-W6TXQI4D.js";
8
+ } from "./chunk-2E4MGFBS.js";
9
9
  import "./chunk-JQHUH6A3.js";
10
10
  export {
11
11
  computeDriftScore,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibgrate/cli",
3
- "version": "1.0.81",
3
+ "version": "1.0.82",
4
4
  "description": "CLI for measuring upgrade drift across Node, .NET, Python & Java projects",
5
5
  "type": "module",
6
6
  "bin": {