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
No known key found for this signature in database
3 changed files with 4 additions and 14 deletions

Binary file not shown.

View File

@ -4609,20 +4609,6 @@
}
]
},
{
"isClone": true,
"noteId": "pOsGYCXsbNQG",
"notePath": [
"pOsGYCXsbNQG",
"pOsGYCXsbNQG"
],
"title": "User Guide",
"prefix": null,
"dataFileName": "User Guide.clone.md",
"type": "text",
"format": "markdown",
"isExpanded": false
},
{
"isClone": false,
"noteId": "k2Gc17NbaAwb",

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() {