@robinmordasiewicz/f5xc-xcsh 2.0.21-2601140516 → 2.0.21-2601142307

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@robinmordasiewicz/f5xc-xcsh",
3
- "version": "2.0.21-2601140516",
3
+ "version": "2.0.21-2601142307",
4
4
  "description": "F5 Distributed Cloud Shell - Interactive CLI for F5 XC",
5
5
  "type": "module",
6
6
  "bin": {
@@ -40,13 +40,16 @@
40
40
  "format:check": "prettier --check \"src/**/*.{ts,tsx}\"",
41
41
  "typecheck": "tsc --noEmit",
42
42
  "security:audit": "npm audit --audit-level=high",
43
- "validate": "npm run typecheck && npm run lint && npm run format:check",
43
+ "analyze:consistency": "tsx scripts/analyze-command-consistency.ts",
44
+ "verify:consistency": "tsx scripts/verify-command-consistency.ts",
45
+ "validate": "npm run typecheck && npm run lint && npm run format:check && npm run verify:consistency",
44
46
  "generate:domains": "tsx scripts/generate-domains.ts",
45
47
  "generate:completions": "tsx scripts/generate-completions.ts",
46
48
  "generate:logo": "tsx scripts/generate-logo-asset.ts",
47
49
  "generate:descriptions": "tsx scripts/generate-descriptions.ts",
48
50
  "generate:description-loader": "tsx scripts/generate-description-loader.ts",
49
51
  "generate:docs": "tsx scripts/generate-docs.ts",
52
+ "validate:domains": "tsx scripts/validate-domains.ts",
50
53
  "generate": "npm run generate:domains && npm run generate:completions && npm run generate:logo && npm run generate:description-loader",
51
54
  "reconcile:specs": "bash ./scripts/download-specs.sh",
52
55
  "prebuild": "npm run reconcile:specs && npm run generate"