We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5e2da3 commit 4b131afCopy full SHA for 4b131af
src/generateDocs.ts
@@ -33,13 +33,15 @@ export const generateDocumentation = async (
33
pathToDocumentationFolder,
34
schemaDetails.detailType,
35
);
36
+ console.log("creating", newDocumentationFilePath);
37
await writeDocumentation(schemaDetails, newDocumentationFilePath);
38
} else {
39
const oldDocumentationFilePath = getVersionedDocumentationFilePath(
40
41
42
schemaDetails.detailVersion,
43
44
+ console.log("creating", oldDocumentationFilePath);
45
await writeDocumentation(schemaDetails, oldDocumentationFilePath);
46
}
47
});
0 commit comments