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 6a83e1e commit ab95a39Copy full SHA for ab95a39
build/api-docs-generator.js
@@ -545,15 +545,6 @@ function deleteFiles() {
545
{ recursive: true, force: true }
546
);
547
548
- // remove generatedApiDocs dir from Docs dir
549
- // this dir has all the previously generated Markdown files
550
- const generatedApiDocsPath = path.join(DOCS_DIR, 'generatedApiDocs');
551
- if (fs.existsSync(generatedApiDocsPath)) {
552
- fs.rmSync(path.join(DOCS_DIR, 'generatedApiDocs'),
553
- { recursive: true, force: true }
554
- );
555
- }
556
-
557
// remove config and jsdoc file
558
fs.unlinkSync(path.join(BUILD_DIR, 'config.json'));
559
fs.unlinkSync(path.join(BUILD_DIR, 'jsdoc.json'));
0 commit comments