@vibgrate/cli 1.0.9 → 1.0.11
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/README.md +1 -1
- package/dist/{baseline-VFKPGNDX.js → baseline-REGJ2NGB.js} +2 -2
- package/dist/{chunk-ZOSHRPMY.js → chunk-MP5Y5L4U.js} +15 -6
- package/dist/{chunk-OF2BMMSF.js → chunk-QLIEQC6Q.js} +1 -1
- package/dist/cli.js +3 -3
- package/dist/index.js +1 -1
- package/package.json +1 -1
- /package/{LICENSE → LICENSE.md} +0 -0
package/README.md
CHANGED
|
@@ -338,4 +338,4 @@ See [DOCS.md](https://github.com/crowers/vibgrate-cli/blob/main/packages/vibgrat
|
|
|
338
338
|
|
|
339
339
|
---
|
|
340
340
|
|
|
341
|
-
Copyright © 2026 Vibgrate. All rights reserved. See [LICENSE](./LICENSE) for terms.
|
|
341
|
+
Copyright © 2026 Vibgrate. All rights reserved. See [LICENSE.md](./LICENSE) for terms.
|
|
@@ -568,7 +568,8 @@ function generatePriorityActions(artifact) {
|
|
|
568
568
|
for (const p of eolProjects) {
|
|
569
569
|
fileLines.push(`
|
|
570
570
|
./${p.path}`);
|
|
571
|
-
fileLines.push(`
|
|
571
|
+
fileLines.push(`
|
|
572
|
+
${p.runtime} \u2192 ${p.runtimeLatest} (${p.runtimeMajorsBehind} major${p.runtimeMajorsBehind > 1 ? "s" : ""} behind)`);
|
|
572
573
|
}
|
|
573
574
|
detail += fileLines.join("");
|
|
574
575
|
actions.push({
|
|
@@ -596,7 +597,8 @@ function generatePriorityActions(artifact) {
|
|
|
596
597
|
if (shown >= 8) break;
|
|
597
598
|
fileLines.push(`
|
|
598
599
|
./${sf.projectPath}`);
|
|
599
|
-
fileLines.push(`
|
|
600
|
+
fileLines.push(`
|
|
601
|
+
${sf.name}: ${sf.fw} (${sf.behind} major${sf.behind > 1 ? "s" : ""} behind)`);
|
|
600
602
|
shown++;
|
|
601
603
|
}
|
|
602
604
|
const remaining = severeFrameworks.length - shown;
|
|
@@ -627,7 +629,8 @@ function generatePriorityActions(artifact) {
|
|
|
627
629
|
if (shown >= 8) break;
|
|
628
630
|
const current = dep.resolvedVersion ?? dep.currentSpec;
|
|
629
631
|
const latest = dep.latestStable ?? "?";
|
|
630
|
-
depLines.push(`
|
|
632
|
+
depLines.push(`
|
|
633
|
+
${dep.package}: ${current} \u2192 ${latest} (${dep.majorsBehind} major${dep.majorsBehind > 1 ? "s" : ""} behind)`);
|
|
631
634
|
shown++;
|
|
632
635
|
}
|
|
633
636
|
const remaining = worstDeps.length - shown;
|
|
@@ -662,7 +665,8 @@ function generatePriorityActions(artifact) {
|
|
|
662
665
|
if (shown >= 8) break;
|
|
663
666
|
fileLines.push(`
|
|
664
667
|
./${tf.projectPath}`);
|
|
665
|
-
fileLines.push(`
|
|
668
|
+
fileLines.push(`
|
|
669
|
+
${tf.name}: ${tf.fw}`);
|
|
666
670
|
shown++;
|
|
667
671
|
}
|
|
668
672
|
const remaining = twoMajorFrameworks.length - shown;
|
|
@@ -696,7 +700,8 @@ function generatePriorityActions(artifact) {
|
|
|
696
700
|
if (shown >= 10) break;
|
|
697
701
|
const ver = dep.resolvedVersion ?? dep.currentSpec;
|
|
698
702
|
const label = bc.deprecatedPackages.includes(dep.package) ? "deprecated" : "polyfill";
|
|
699
|
-
fileLines.push(`
|
|
703
|
+
fileLines.push(`
|
|
704
|
+
${dep.package}: ${ver} (${label})`);
|
|
700
705
|
shown++;
|
|
701
706
|
}
|
|
702
707
|
}
|
|
@@ -731,7 +736,8 @@ function generatePriorityActions(artifact) {
|
|
|
731
736
|
./${srcPath}`);
|
|
732
737
|
for (const pkg2 of pkgs) {
|
|
733
738
|
if (shown >= 10) break;
|
|
734
|
-
pathLines.push(`
|
|
739
|
+
pathLines.push(`
|
|
740
|
+
${pkg2.package}: ${pkg2.spec}`);
|
|
735
741
|
shown++;
|
|
736
742
|
}
|
|
737
743
|
}
|
|
@@ -4227,6 +4233,9 @@ async function autoPush(artifact, rootDir, opts) {
|
|
|
4227
4233
|
}
|
|
4228
4234
|
const result = await response.json();
|
|
4229
4235
|
console.log(chalk5.green("\u2714") + ` Uploaded successfully (${result.ingestId ?? "ok"})`);
|
|
4236
|
+
if (result.ingestId) {
|
|
4237
|
+
console.log(chalk5.dim(` See full report: `) + chalk5.cyan(`https://dash.vibgrate.com/${parsed.workspaceId}/scan/${result.ingestId}`));
|
|
4238
|
+
}
|
|
4230
4239
|
} catch (e) {
|
|
4231
4240
|
const msg = e instanceof Error ? e.message : String(e);
|
|
4232
4241
|
console.error(chalk5.red(`Upload failed: ${msg}`));
|
package/dist/cli.js
CHANGED
|
@@ -4,7 +4,7 @@ import {
|
|
|
4
4
|
} from "./chunk-VXZT34Y5.js";
|
|
5
5
|
import {
|
|
6
6
|
baselineCommand
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-QLIEQC6Q.js";
|
|
8
8
|
import {
|
|
9
9
|
VERSION,
|
|
10
10
|
dsnCommand,
|
|
@@ -15,7 +15,7 @@ import {
|
|
|
15
15
|
readJsonFile,
|
|
16
16
|
scanCommand,
|
|
17
17
|
writeDefaultConfig
|
|
18
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-MP5Y5L4U.js";
|
|
19
19
|
|
|
20
20
|
// src/cli.ts
|
|
21
21
|
import { Command as Command4 } from "commander";
|
|
@@ -38,7 +38,7 @@ var initCommand = new Command("init").description("Initialize vibgrate in a proj
|
|
|
38
38
|
console.log(chalk.green("\u2714") + ` Created ${chalk.bold("vibgrate.config.ts")}`);
|
|
39
39
|
}
|
|
40
40
|
if (opts.baseline) {
|
|
41
|
-
const { runBaseline } = await import("./baseline-
|
|
41
|
+
const { runBaseline } = await import("./baseline-REGJ2NGB.js");
|
|
42
42
|
await runBaseline(rootDir);
|
|
43
43
|
}
|
|
44
44
|
console.log("");
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
/package/{LICENSE → LICENSE.md}
RENAMED
|
File without changes
|