@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/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, 100 when no packages) */
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 ('low' when no packages in layer) */
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
@@ -5,7 +5,7 @@ import {
5
5
  formatText,
6
6
  generateFindings,
7
7
  runScan
8
- } from "./chunk-TKNDQ337.js";
8
+ } from "./chunk-W6TXQI4D.js";
9
9
  import "./chunk-JQHUH6A3.js";
10
10
  export {
11
11
  computeDriftScore,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibgrate/cli",
3
- "version": "1.0.79",
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",