@vibgrate/cli 1.0.79 → 1.0.81
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 +14 -3
- package/HCS-EXTRACT.md +442 -0
- package/HCS-RUNTIME-SETUP.md +73 -0
- package/LICENSE.md +1 -1
- package/README.md +1 -1
- package/dist/{baseline-NRKROYVK.js → baseline-5AZAIOQ6.js} +2 -2
- package/dist/{chunk-DKSPLRJV.js → chunk-DEPG5EIH.js} +1 -1
- package/dist/{chunk-TKNDQ337.js → chunk-W6TXQI4D.js} +27 -22
- package/dist/cli.js +170 -16
- package/dist/hcs-worker.js +562 -25
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1 -1
- package/package.json +4 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
type DepSection = 'dependencies' | 'devDependencies' | 'peerDependencies' | 'optionalDependencies';
|
|
2
|
-
type RiskLevel = 'low' | 'moderate' | 'high';
|
|
2
|
+
type RiskLevel = 'low' | 'moderate' | 'high' | 'none';
|
|
3
3
|
type ProjectType = 'node' | 'dotnet' | 'python' | 'java' | 'go' | 'rust' | 'php' | 'typescript' | 'ruby' | 'swift' | 'kotlin' | 'dart' | 'scala' | 'r' | 'objective-c' | 'elixir' | 'haskell' | 'lua' | 'perl' | 'julia' | 'shell' | 'clojure' | 'groovy' | 'c' | 'cpp' | 'cobol' | 'fortran' | 'visual-basic' | 'pascal' | 'ada' | 'assembly' | 'rpg';
|
|
4
4
|
type OutputFormat = 'text' | 'json' | 'sarif' | 'md';
|
|
5
5
|
interface DependencyRow {
|
|
@@ -392,9 +392,9 @@ interface LayerSummary {
|
|
|
392
392
|
layer: ArchitectureLayer;
|
|
393
393
|
/** Number of files in this layer */
|
|
394
394
|
fileCount: number;
|
|
395
|
-
/** Drift score for dependencies used in this layer (0–100,
|
|
395
|
+
/** Drift score for dependencies used in this layer (0–100, 0 when no packages to track) */
|
|
396
396
|
driftScore: number;
|
|
397
|
-
/** Risk level derived from drift score ('
|
|
397
|
+
/** Risk level derived from drift score ('none' when no packages to track) */
|
|
398
398
|
riskLevel: RiskLevel;
|
|
399
399
|
/** Tech stack components detected in this layer */
|
|
400
400
|
techStack: InventoryItem[];
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibgrate/cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.81",
|
|
4
4
|
"description": "CLI for measuring upgrade drift across Node, .NET, Python & Java projects",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -16,7 +16,9 @@
|
|
|
16
16
|
},
|
|
17
17
|
"files": [
|
|
18
18
|
"dist",
|
|
19
|
-
"DOCS.md"
|
|
19
|
+
"DOCS.md",
|
|
20
|
+
"HCS-EXTRACT.md",
|
|
21
|
+
"HCS-RUNTIME-SETUP.md"
|
|
20
22
|
],
|
|
21
23
|
"scripts": {
|
|
22
24
|
"build": "pnpm run build:hcs && tsup src/cli.ts src/index.ts --format esm --dts --clean && pnpm run bundle:hcs && pnpm test:solutions",
|