@vibgrate/cli 2026.618.1 → 2026.623.1
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/DOCS.md +55 -4
- package/README.md +2 -0
- package/dist/baseline-2B6YIW6Z.js +1 -0
- package/dist/chunk-BHWXSLTQ.js +2 -0
- package/dist/chunk-EK7ODJWE.js +1 -0
- package/dist/chunk-I65B3ZRL.js +78 -0
- package/dist/chunk-MKDRULJ6.js +1 -0
- package/dist/chunk-XTHPCEME.js +2 -0
- package/dist/chunk-YF3NML7I.js +323 -0
- package/dist/cli.js +157 -5017
- package/dist/dist-AP3RH35M.js +1 -0
- package/dist/fs-PXXYZATK-ZP2RBR47.js +1 -0
- package/dist/hcs-wasm/package.json +3 -0
- package/dist/hcs-wasm/vibgrate_hcs_wasm.js +394 -0
- package/dist/hcs-wasm/vibgrate_hcs_wasm_bg.wasm +0 -0
- package/dist/hcs-worker.js +567 -283
- package/dist/index.js +1 -19
- package/dist/semver-TPPMM2NV.js +1 -0
- package/package.json +5 -5
- package/dist/baseline-K2GQA6G5.js +0 -12
- package/dist/chunk-5IXVOEZN.js +0 -1999
- package/dist/chunk-BMLE722B.js +0 -18964
- package/dist/chunk-C7LU6YIL.js +0 -813
- package/dist/chunk-JSBRDJBE.js +0 -30
- package/dist/chunk-LWB7JBWP.js +0 -103
- package/dist/fs-PXXYZATK-EW5LCUA7.js +0 -37
- package/dist/semver-2FJFIYVN.js +0 -5
package/dist/index.js
CHANGED
|
@@ -1,19 +1 @@
|
|
|
1
|
-
|
|
2
|
-
computeDriftScore,
|
|
3
|
-
formatMarkdown,
|
|
4
|
-
formatSarif,
|
|
5
|
-
formatText,
|
|
6
|
-
generateFindings,
|
|
7
|
-
runScan
|
|
8
|
-
} from "./chunk-BMLE722B.js";
|
|
9
|
-
import "./chunk-5IXVOEZN.js";
|
|
10
|
-
import "./chunk-C7LU6YIL.js";
|
|
11
|
-
import "./chunk-JSBRDJBE.js";
|
|
12
|
-
export {
|
|
13
|
-
computeDriftScore,
|
|
14
|
-
formatMarkdown,
|
|
15
|
-
formatSarif,
|
|
16
|
-
formatText,
|
|
17
|
-
generateFindings,
|
|
18
|
-
runScan
|
|
19
|
-
};
|
|
1
|
+
export{Z as runScan}from'./chunk-YF3NML7I.js';export{i as computeDriftScore,v as formatMarkdown,u as formatSarif,t as formatText,j as generateFindings}from'./chunk-I65B3ZRL.js';import'./chunk-MKDRULJ6.js';import'./chunk-XTHPCEME.js';import'./chunk-EK7ODJWE.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import {a}from'./chunk-MKDRULJ6.js';import'./chunk-EK7ODJWE.js';var semverTPPMM2NV = a();export{semverTPPMM2NV as default};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibgrate/cli",
|
|
3
|
-
"version": "2026.
|
|
3
|
+
"version": "2026.623.1",
|
|
4
4
|
"description": "CLI for measuring upgrade drift across Node, .NET, Python & Java projects",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"build": "pnpm run build:hcs && tsup && pnpm run bundle:hcs && pnpm test:solutions",
|
|
25
25
|
"build:only": "pnpm run build:hcs && tsup && pnpm run bundle:hcs",
|
|
26
26
|
"build:hcs": "pnpm --filter @vibgrate/hcs-node-worker build",
|
|
27
|
-
"bundle:hcs": "cp ../vibgrate-hcs/node/dist/main.js dist/hcs-worker.js",
|
|
27
|
+
"bundle:hcs": "cp ../vibgrate-hcs/node/dist/main.js dist/hcs-worker.js && node scripts/bundle-hcs-wasm.mjs",
|
|
28
28
|
"dev": "tsx src/cli.ts",
|
|
29
29
|
"lint": "eslint src",
|
|
30
30
|
"typecheck": "tsc --noEmit",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"license": "SEE LICENSE IN LICENSE",
|
|
48
48
|
"homepage": "https://vibgrate.com",
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@types/node": "^
|
|
50
|
+
"@types/node": "^26.0.0",
|
|
51
51
|
"@types/semver": "^7.5.0",
|
|
52
52
|
"eslint": "^10.5.0",
|
|
53
|
-
"fast-xml-parser": "^5.9.
|
|
54
|
-
"semver": "^7.8.
|
|
53
|
+
"fast-xml-parser": "^5.9.3",
|
|
54
|
+
"semver": "^7.8.5",
|
|
55
55
|
"tsup": "^8.0.0",
|
|
56
56
|
"tsx": "^4.22.4",
|
|
57
57
|
"vitest": "^2.0.0"
|