fix(edit-docs): consistency check issues

This commit is contained in:
Elian Doran
2025-03-11 18:26:42 +02:00
parent 0af357ece8
commit bb288c5c68
3 changed files with 4 additions and 14 deletions

View File

@@ -75,6 +75,10 @@ async function importData(input: Buffer) {
const { importZip } = ((await import("./src/services/import/zip.js")).default);
const context = new TaskContext("no-report");
await importZip(context, input, note, { preserveIds: true });
const { runOnDemandChecks } = (await import("./src/services/consistency_checks.js")).default;
await runOnDemandChecks(true);
}
async function createImportZip() {