@empline/preflight 1.1.21 → 1.1.22

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.
Files changed (1) hide show
  1. package/package.json +7 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@empline/preflight",
3
- "version": "1.1.21",
3
+ "version": "1.1.22",
4
4
  "description": "Distributable preflight validation system with app-specific plugin support",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -19,13 +19,15 @@
19
19
  },
20
20
  "scripts": {
21
21
  "build": "tsc",
22
- "prebuild": "npm run check:hygiene",
22
+ "prebuild": "npm run check:hygiene && npm run check:metadata && npm run check:broken",
23
23
  "dev": "tsc --watch",
24
24
  "preflight": "tsx src/bin/preflight.ts",
25
- "check:all": "tsx src/checks/**/*.ts",
26
- "check:security": "tsx src/checks/security/*.ts",
27
- "check:business": "tsx src/checks/business/*.ts",
25
+ "check:system": "tsx src/bin/preflight.ts --category system",
26
+ "check:security": "tsx src/bin/preflight.ts --category security",
27
+ "check:business": "tsx src/bin/preflight.ts --category business",
28
28
  "check:hygiene": "tsx scripts/maintenance/module-boundary-validator.ts",
29
+ "check:metadata": "tsx src/checks/system/preflight-metadata-validator.ts",
30
+ "check:broken": "tsx src/checks/system/broken-preflight-detection.ts",
29
31
  "check:hygiene:all": "tsx scripts/maintenance/module-boundary-validator.ts && tsx scripts/maintenance/workflow-composition-validator.ts && tsx scripts/maintenance/canonical-import-enforcer.ts",
30
32
  "lint": "eslint src/",
31
33
  "test": "vitest",