@ipation/specbridge 2.4.7 → 2.4.9
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/CHANGELOG.md +39 -1
- package/dist/cli.js +810 -764
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +40 -48
- package/dist/index.js +842 -788
- package/dist/index.js.map +1 -1
- package/package.json +6 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ipation/specbridge",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.9",
|
|
4
4
|
"description": "Architecture Decision Runtime - Transform architectural decisions into executable, verifiable constraints",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -36,6 +36,10 @@
|
|
|
36
36
|
"docs:validate": "node scripts/docs/validate-runtime-policy.mjs",
|
|
37
37
|
"release:validate": "node scripts/release/validate-version-changelog.mjs",
|
|
38
38
|
"architecture:check-boundaries": "node scripts/maintenance/check-module-boundaries.mjs",
|
|
39
|
+
"architecture:check-boundaries:warning": "node scripts/maintenance/check-module-boundaries.mjs --mode=warning",
|
|
40
|
+
"eslint10:readiness": "npm_config_cache=.cache/npm node scripts/maintenance/check-eslint10-readiness.mjs",
|
|
41
|
+
"eslint10:readiness:strict": "npm_config_cache=.cache/npm node scripts/maintenance/check-eslint10-readiness.mjs --strict",
|
|
42
|
+
"coverage:check-modules": "node scripts/maintenance/check-module-coverage.mjs",
|
|
39
43
|
"type-check": "tsc --noEmit",
|
|
40
44
|
"version:patch": "npm version patch",
|
|
41
45
|
"version:minor": "npm version minor",
|
|
@@ -45,7 +49,7 @@
|
|
|
45
49
|
"pack:check": "npm_config_cache=.cache/npm npm pack --ignore-scripts && npm_config_cache=.cache/npm HUSKY=0 npm pack --dry-run",
|
|
46
50
|
"deps:outdated": "npm_config_cache=.cache/npm npm outdated --long",
|
|
47
51
|
"health:quick": "npm run type-check && npm run lint:check && npm run format:check && npm run test:unit",
|
|
48
|
-
"health:check": "npm run docs:validate && npm run release:validate && npm run type-check && npm run lint:check && npm run format:check && npm run test && npm run test:integration && npm run test:coverage && npm audit --audit-level=high",
|
|
52
|
+
"health:check": "npm run docs:validate && npm run release:validate && npm run type-check && npm run lint:check && npm run format:check && npm run test && npm run test:integration && npm run test:coverage && npm run coverage:check-modules && npm audit --audit-level=high",
|
|
49
53
|
"prepare": "husky",
|
|
50
54
|
"prepublishOnly": "npm run build"
|
|
51
55
|
},
|