Skip to content

Commit

Permalink
feat(core): projectDocuments implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
tgreyuk committed May 8, 2024
1 parent ee0a95e commit 4b55291
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# TEST CHANGELOG
14 changes: 14 additions & 0 deletions packages/typedoc-plugin-markdown/test/fixtures/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,20 @@ const config: Record<string, Fixture> = {
},
],
},
documents: {
only: true,
entryPoints: '/documents/index.ts',
commonOptions: {
plugin: [path.join(__dirname, 'custom-plugins', 'navigation-plugin.mjs')],
hidePageHeader: true,
hideBreadcrumbs: true,
},
options: [
{
projectDocuments: ['./CHANGELOG.md'],
},
],
},
};

export default config;
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/**
* @module
*/

export function someFunction() {}
export class SomeClass {}

0 comments on commit 4b55291

Please sign in to comment.