@vibgrate/cli 2026.615.1 → 2026.615.2
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-WUHK4LQY.js} +3 -3
- package/dist/{chunk-74ZJFYEM.js → chunk-5IXVOEZN.js} +159 -96
- package/dist/{chunk-ZDCFG3EB.js → chunk-BOGC5GYS.js} +5060 -1782
- package/dist/{chunk-Y3VTYTQR.js → chunk-HJ4D6B3B.js} +1 -1
- package/dist/cli.js +5 -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-HJ4D6B3B.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-BOGC5GYS.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-WUHK4LQY.js");
|
|
53
53
|
await runBaseline(rootDir);
|
|
54
54
|
}
|
|
55
55
|
console.log("");
|
|
@@ -1667,7 +1667,7 @@ var updateCommand = new Command6("update").description("Update vibgrate to the l
|
|
|
1667
1667
|
console.error(chalk7.red("Could not reach the npm registry. Check your network connection."));
|
|
1668
1668
|
process.exit(1);
|
|
1669
1669
|
}
|
|
1670
|
-
const semver2 = await import("./semver-
|
|
1670
|
+
const semver2 = await import("./semver-2FJFIYVN.js");
|
|
1671
1671
|
if (!semver2.gt(latest, VERSION)) {
|
|
1672
1672
|
console.log(chalk7.green("\u2714") + ` You are on the latest version (${VERSION}).`);
|
|
1673
1673
|
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.2",
|
|
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"
|