@vibgrate/cli 2026.615.1 → 2026.615.3

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,6 +1,6 @@
1
1
  import {
2
2
  runScan
3
- } from "./chunk-ZDCFG3EB.js";
3
+ } from "./chunk-4G4YRE6K.js";
4
4
 
5
5
  // src/commands/baseline.ts
6
6
  import * as path3 from "path";
package/dist/cli.js CHANGED
@@ -6,7 +6,7 @@ import {
6
6
  pathExists,
7
7
  readJsonFile,
8
8
  writeTextFile
9
- } from "./chunk-Y3VTYTQR.js";
9
+ } from "./chunk-7343XMW2.js";
10
10
  import {
11
11
  computeRepoFingerprint,
12
12
  detectVcs,
@@ -16,10 +16,10 @@ import {
16
16
  resolveRepositoryName,
17
17
  runScan,
18
18
  writeDefaultConfig
19
- } from "./chunk-ZDCFG3EB.js";
19
+ } from "./chunk-4G4YRE6K.js";
20
20
  import {
21
21
  require_semver
22
- } from "./chunk-74ZJFYEM.js";
22
+ } from "./chunk-5IXVOEZN.js";
23
23
  import {
24
24
  parseExcludePatterns,
25
25
  pathExists as pathExists2
@@ -49,7 +49,7 @@ var initCommand = new Command("init").description("Initialize vibgrate in a proj
49
49
  console.log(chalk.green("\u2714") + ` Created ${chalk.bold("vibgrate.config.ts")}`);
50
50
  }
51
51
  if (opts.baseline) {
52
- const { runBaseline } = await import("./baseline-4E3WWG4W.js");
52
+ const { runBaseline } = await import("./baseline-OK4HC3QV.js");
53
53
  await runBaseline(rootDir);
54
54
  }
55
55
  console.log("");
@@ -1117,6 +1117,25 @@ function formatMarkdown(artifact) {
1117
1117
  }
1118
1118
  lines.push("");
1119
1119
  }
1120
+ if (artifact.extended?.standards && artifact.extended.standards.recommended.length > 0) {
1121
+ const std = artifact.extended.standards;
1122
+ lines.push("## Recommended Standards");
1123
+ lines.push("");
1124
+ const purposes = std.projectPurposes.map((p) => `${p.project} \u2192 ${p.category}`).join(", ");
1125
+ if (purposes) lines.push(`- **Detected purpose:** ${purposes}`);
1126
+ if (std.frameworks.length > 0) {
1127
+ lines.push("- **Compliance framework coverage:**");
1128
+ for (const f of std.frameworks) {
1129
+ lines.push(` - ${f.name}: ${f.recommendedMembers}/${f.totalMembers} member standards apply`);
1130
+ }
1131
+ }
1132
+ lines.push("- **Top standards to consider:**");
1133
+ for (const rec of std.recommended.slice(0, 10)) {
1134
+ const flag = rec.complianceRelevant ? " _(compliance)_" : "";
1135
+ lines.push(` - **${rec.name}** \u2014 ${rec.reason}${flag}`);
1136
+ }
1137
+ lines.push("");
1138
+ }
1120
1139
  if (artifact.findings.length > 0) {
1121
1140
  lines.push("## Findings");
1122
1141
  lines.push("");
@@ -1667,7 +1686,7 @@ var updateCommand = new Command6("update").description("Update vibgrate to the l
1667
1686
  console.error(chalk7.red("Could not reach the npm registry. Check your network connection."));
1668
1687
  process.exit(1);
1669
1688
  }
1670
- const semver2 = await import("./semver-JBJZTHUX.js");
1689
+ const semver2 = await import("./semver-2FJFIYVN.js");
1671
1690
  if (!semver2.gt(latest, VERSION)) {
1672
1691
  console.log(chalk7.green("\u2714") + ` You are on the latest version (${VERSION}).`);
1673
1692
  return;
package/dist/index.js CHANGED
@@ -5,8 +5,8 @@ import {
5
5
  formatText,
6
6
  generateFindings,
7
7
  runScan
8
- } from "./chunk-ZDCFG3EB.js";
9
- import "./chunk-74ZJFYEM.js";
8
+ } from "./chunk-4G4YRE6K.js";
9
+ import "./chunk-5IXVOEZN.js";
10
10
  import "./chunk-C7LU6YIL.js";
11
11
  import "./chunk-JSBRDJBE.js";
12
12
  export {
@@ -1,5 +1,5 @@
1
1
  import {
2
2
  require_semver
3
- } from "./chunk-74ZJFYEM.js";
3
+ } from "./chunk-5IXVOEZN.js";
4
4
  import "./chunk-JSBRDJBE.js";
5
5
  export default require_semver();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibgrate/cli",
3
- "version": "2026.615.1",
3
+ "version": "2026.615.3",
4
4
  "description": "CLI for measuring upgrade drift across Node, .NET, Python & Java projects",
5
5
  "type": "module",
6
6
  "bin": {
@@ -47,11 +47,11 @@
47
47
  "license": "SEE LICENSE IN LICENSE",
48
48
  "homepage": "https://vibgrate.com",
49
49
  "devDependencies": {
50
- "@types/node": "^25.9.2",
50
+ "@types/node": "^25.9.3",
51
51
  "@types/semver": "^7.5.0",
52
- "eslint": "^9.0.0",
53
- "fast-xml-parser": "^4.3.0",
54
- "semver": "^7.6.0",
52
+ "eslint": "^10.5.0",
53
+ "fast-xml-parser": "^5.9.0",
54
+ "semver": "^7.8.4",
55
55
  "tsup": "^8.0.0",
56
56
  "tsx": "^4.22.4",
57
57
  "vitest": "^2.0.0"