@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.
- package/dist/{baseline-4E3WWG4W.js → baseline-OK4HC3QV.js} +3 -3
- package/dist/{chunk-ZDCFG3EB.js → chunk-4G4YRE6K.js} +5470 -1761
- package/dist/{chunk-74ZJFYEM.js → chunk-5IXVOEZN.js} +159 -96
- package/dist/{chunk-Y3VTYTQR.js → chunk-7343XMW2.js} +1 -1
- package/dist/cli.js +24 -5
- package/dist/index.js +2 -2
- package/dist/{semver-JBJZTHUX.js → semver-2FJFIYVN.js} +1 -1
- package/package.json +5 -5
package/dist/cli.js
CHANGED
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
pathExists,
|
|
7
7
|
readJsonFile,
|
|
8
8
|
writeTextFile
|
|
9
|
-
} from "./chunk-
|
|
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-
|
|
19
|
+
} from "./chunk-4G4YRE6K.js";
|
|
20
20
|
import {
|
|
21
21
|
require_semver
|
|
22
|
-
} from "./chunk-
|
|
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-
|
|
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-
|
|
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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibgrate/cli",
|
|
3
|
-
"version": "2026.615.
|
|
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.
|
|
50
|
+
"@types/node": "^25.9.3",
|
|
51
51
|
"@types/semver": "^7.5.0",
|
|
52
|
-
"eslint": "^
|
|
53
|
-
"fast-xml-parser": "^
|
|
54
|
-
"semver": "^7.
|
|
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"
|