We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44c6496 commit 9aa3a00Copy full SHA for 9aa3a00
1 file changed
global-template/docgen/lib/pipeline.mjs
@@ -1,4 +1,5 @@
1
import * as base from './pipeline-base.mjs';
2
+import { guardedAudit } from './audit-guard.mjs';
3
import { budgetReport } from './provider.mjs';
4
import { ingestModels } from './indexer.mjs';
5
import { sourceSnapshot } from './core.mjs';
@@ -14,7 +15,9 @@ export async function model(root, { skipIndex = false } = {}) {
14
15
}
16
export const plan = base.plan;
17
export const generate = base.generate;
-export const audit = base.audit;
18
+export async function audit(root) {
19
+ return guardedAudit(root, base.audit);
20
+}
21
export const publish = base.publish;
22
export function status(root) {
23
const result = base.status(root);
0 commit comments