Skip to content

Commit 29a0432

Browse files
fix: #34 Parser not works anymore if useReadMe is disabled (#35)
* Fixes #34 Parser not works anymore if useReadMe is disabled * Update src/index.ts Co-authored-by: Samuel Attard <[email protected]> Co-authored-by: Samuel Attard <[email protected]>
1 parent d8bec24 commit 29a0432

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ type ParseOptions = {
1212
export async function parseDocs(options: ParseOptions) {
1313
const packageMode = options.packageMode || 'single';
1414

15-
const apiDocsPath = options.baseDirectory || path.resolve('./', 'docs', 'api');
15+
const apiDocsPath = path.resolve(options.baseDirectory, 'docs', 'api');
1616
const structuresPath = path.resolve(apiDocsPath, 'structures');
1717

1818
let structures: string[] = [];

0 commit comments

Comments
 (0)