audit-tools 0.34.10 → 0.34.13
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/audit/extractors/designAssessment.js +3 -3
- package/dist/audit/extractors/designAssessment.js.map +1 -1
- package/dist/remediate/phases/plan.d.ts +26 -0
- package/dist/remediate/phases/plan.d.ts.map +1 -1
- package/dist/remediate/phases/plan.js +154 -13
- package/dist/remediate/phases/plan.js.map +1 -1
- package/dist/remediate/state/types.d.ts +10 -0
- package/dist/remediate/state/types.d.ts.map +1 -1
- package/dist/remediate/steps/dispatch/marshal.d.ts.map +1 -1
- package/dist/remediate/steps/dispatch/marshal.js +138 -9
- package/dist/remediate/steps/dispatch/marshal.js.map +1 -1
- package/dist/remediate/steps/nextStep.d.ts +14 -0
- package/dist/remediate/steps/nextStep.d.ts.map +1 -1
- package/dist/remediate/steps/nextStep.js +86 -18
- package/dist/remediate/steps/nextStep.js.map +1 -1
- package/dist/shared/friction/triage.js +0 -0
- package/dist/shared/friction/triage.js.map +1 -1
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "audit-tools",
|
|
3
|
-
"version": "0.34.
|
|
3
|
+
"version": "0.34.13",
|
|
4
4
|
"private": false,
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"description": "Portable hybrid code auditing + remediation orchestrators for arbitrary repositories.",
|
|
@@ -44,8 +44,9 @@
|
|
|
44
44
|
"test": "npm run build && node scripts/shared/run-vitest-gate.mjs",
|
|
45
45
|
"test:single": "npm run build && node scripts/shared/run-vitest-gate.mjs",
|
|
46
46
|
"verify:guards": "node scripts/shared/run-vitest-gate.mjs --retry=2 --exclude \"**/audit-code-completion.test.mjs\" --exclude \"**/audit-code-wrapper.test.mjs\" --exclude \"**/audit/next-step.test.mjs\" --exclude \"**/seam-host-only-next-step.test.mjs\" --exclude \"**/*-e2e.test.*\" --exclude \"**/next-step-implement-dispatch.test.ts\" --exclude \"**/next-step-pipeline-dispatch.test.ts\"",
|
|
47
|
-
"verify:checks": "node scripts/shared/profile-run.mjs verify-checks check:deadcode check:doc-manifest build verify:hosts verify:remediate-hosts smoke:packaged-audit-code smoke:packaged-remediate-code",
|
|
47
|
+
"verify:checks": "node scripts/shared/profile-run.mjs verify-checks check:control-bytes check:deadcode check:doc-manifest build verify:hosts verify:remediate-hosts smoke:packaged-audit-code smoke:packaged-remediate-code",
|
|
48
48
|
"verify:release": "npm run verify:checks && node scripts/shared/run-vitest-gate.mjs",
|
|
49
|
+
"check:control-bytes": "node scripts/check-control-bytes.mjs",
|
|
49
50
|
"check:deadcode": "knip --no-config-hints",
|
|
50
51
|
"check:doc-manifest": "node scripts/check-doc-manifest.mjs",
|
|
51
52
|
"verify:hosts": "node scripts/audit/verify-hosts.mjs",
|