@vibgrate/cli 2026.628.1 → 2026.629.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/dist/baseline-OXEE3YEC.js +1 -0
- package/dist/chunk-CMY7D2QW.js +75 -0
- package/dist/{chunk-CKBCROBF.js → chunk-OKJJ2EBG.js} +2 -2
- package/dist/{chunk-ROPIO52N.js → chunk-TQMGL6IH.js} +2 -2
- package/dist/cli.js +2 -2
- package/dist/dist-TFQAVP5P.js +1 -0
- package/dist/hcs-worker.js +20 -16
- package/dist/index.js +1 -1
- package/package.json +3 -3
- package/dist/baseline-QM3PG3RY.js +0 -1
- package/dist/chunk-RKH4N26K.js +0 -75
- package/dist/dist-LFSEE53Z.js +0 -1
package/dist/hcs-worker.js
CHANGED
|
@@ -36,12 +36,12 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
36
36
|
mod
|
|
37
37
|
));
|
|
38
38
|
|
|
39
|
-
// ../../../node_modules/.pnpm/tsup@8.5.1_jiti@2.7.0_postcss@8.5.
|
|
39
|
+
// ../../../node_modules/.pnpm/tsup@8.5.1_jiti@2.7.0_postcss@8.5.16_tsx@4.22.4_typescript@5.9.3/node_modules/tsup/assets/esm_shims.js
|
|
40
40
|
import path from "path";
|
|
41
41
|
import { fileURLToPath } from "url";
|
|
42
42
|
var getFilename, getDirname, __dirname, __filename;
|
|
43
43
|
var init_esm_shims = __esm({
|
|
44
|
-
"../../../node_modules/.pnpm/tsup@8.5.1_jiti@2.7.0_postcss@8.5.
|
|
44
|
+
"../../../node_modules/.pnpm/tsup@8.5.1_jiti@2.7.0_postcss@8.5.16_tsx@4.22.4_typescript@5.9.3/node_modules/tsup/assets/esm_shims.js"() {
|
|
45
45
|
"use strict";
|
|
46
46
|
getFilename = () => fileURLToPath(import.meta.url);
|
|
47
47
|
getDirname = () => path.dirname(getFilename());
|
|
@@ -213917,9 +213917,9 @@ var require_commonjs = __commonJS({
|
|
|
213917
213917
|
}
|
|
213918
213918
|
});
|
|
213919
213919
|
|
|
213920
|
-
// ../../../node_modules/.pnpm/brace-expansion@5.0.
|
|
213920
|
+
// ../../../node_modules/.pnpm/brace-expansion@5.0.7/node_modules/brace-expansion/dist/commonjs/index.js
|
|
213921
213921
|
var require_commonjs2 = __commonJS({
|
|
213922
|
-
"../../../node_modules/.pnpm/brace-expansion@5.0.
|
|
213922
|
+
"../../../node_modules/.pnpm/brace-expansion@5.0.7/node_modules/brace-expansion/dist/commonjs/index.js"(exports) {
|
|
213923
213923
|
"use strict";
|
|
213924
213924
|
init_esm_shims();
|
|
213925
213925
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -213996,17 +213996,19 @@ var require_commonjs2 = __commonJS({
|
|
|
213996
213996
|
}
|
|
213997
213997
|
function expand_(str, max, isTop) {
|
|
213998
213998
|
const expansions = [];
|
|
213999
|
-
|
|
214000
|
-
|
|
214001
|
-
|
|
214002
|
-
|
|
214003
|
-
|
|
214004
|
-
|
|
214005
|
-
|
|
214006
|
-
|
|
214007
|
-
|
|
213999
|
+
for (; ; ) {
|
|
214000
|
+
const m = (0, balanced_match_1.balanced)("{", "}", str);
|
|
214001
|
+
if (!m)
|
|
214002
|
+
return [str];
|
|
214003
|
+
const pre = m.pre;
|
|
214004
|
+
if (/\$$/.test(m.pre)) {
|
|
214005
|
+
const post2 = m.post.length ? expand_(m.post, max, false) : [""];
|
|
214006
|
+
for (let k = 0; k < post2.length && k < max; k++) {
|
|
214007
|
+
const expansion = pre + "{" + m.body + "}" + post2[k];
|
|
214008
|
+
expansions.push(expansion);
|
|
214009
|
+
}
|
|
214010
|
+
return expansions;
|
|
214008
214011
|
}
|
|
214009
|
-
} else {
|
|
214010
214012
|
const isNumericSequence = /^-?\d+\.\.-?\d+(?:\.\.-?\d+)?$/.test(m.body);
|
|
214011
214013
|
const isAlphaSequence = /^[a-zA-Z]\.\.[a-zA-Z](?:\.\.-?\d+)?$/.test(m.body);
|
|
214012
214014
|
const isSequence = isNumericSequence || isAlphaSequence;
|
|
@@ -214014,10 +214016,12 @@ var require_commonjs2 = __commonJS({
|
|
|
214014
214016
|
if (!isSequence && !isOptions) {
|
|
214015
214017
|
if (m.post.match(/,(?!,).*\}/)) {
|
|
214016
214018
|
str = m.pre + "{" + m.body + escClose + m.post;
|
|
214017
|
-
|
|
214019
|
+
isTop = true;
|
|
214020
|
+
continue;
|
|
214018
214021
|
}
|
|
214019
214022
|
return [str];
|
|
214020
214023
|
}
|
|
214024
|
+
const post = m.post.length ? expand_(m.post, max, false) : [""];
|
|
214021
214025
|
let n;
|
|
214022
214026
|
if (isSequence) {
|
|
214023
214027
|
n = m.body.split(/\.\./);
|
|
@@ -214081,8 +214085,8 @@ var require_commonjs2 = __commonJS({
|
|
|
214081
214085
|
}
|
|
214082
214086
|
}
|
|
214083
214087
|
}
|
|
214088
|
+
return expansions;
|
|
214084
214089
|
}
|
|
214085
|
-
return expansions;
|
|
214086
214090
|
}
|
|
214087
214091
|
}
|
|
214088
214092
|
});
|
package/dist/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export{Z as runScan}from'./chunk-
|
|
1
|
+
export{Z as runScan}from'./chunk-OKJJ2EBG.js';export{i as computeDriftScore,v as formatMarkdown,u as formatSarif,t as formatText,j as generateFindings}from'./chunk-CMY7D2QW.js';import'./chunk-MKDRULJ6.js';import'./chunk-XTHPCEME.js';import'./chunk-EK7ODJWE.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibgrate/cli",
|
|
3
|
-
"version": "2026.
|
|
3
|
+
"version": "2026.629.1",
|
|
4
4
|
"description": "CLI for measuring upgrade drift across Node, .NET, Python & Java projects",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -47,9 +47,9 @@
|
|
|
47
47
|
"license": "SEE LICENSE IN LICENSE",
|
|
48
48
|
"homepage": "https://vibgrate.com",
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@types/node": "^26.0.
|
|
50
|
+
"@types/node": "^26.0.1",
|
|
51
51
|
"@types/semver": "^7.5.0",
|
|
52
|
-
"eslint": "^10.
|
|
52
|
+
"eslint": "^10.6.0",
|
|
53
53
|
"fast-xml-parser": "^5.9.3",
|
|
54
54
|
"semver": "^7.8.5",
|
|
55
55
|
"tsup": "^8.0.0",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export{h as baselineCommand,g as runBaseline}from'./chunk-ROPIO52N.js';import'./chunk-RKH4N26K.js';import'./chunk-MKDRULJ6.js';import'./chunk-XTHPCEME.js';import'./chunk-EK7ODJWE.js';
|