From 918562529dee41a2d94aba5d712a2abccd2687a7 Mon Sep 17 00:00:00 2001 From: Christopher Hiller Date: Tue, 28 Nov 2023 22:16:46 -0800 Subject: [PATCH] fix: generate packages.md even if groups used Closes #471 --- packages/typedoc-plugin-markdown/src/theme/urls-context.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/typedoc-plugin-markdown/src/theme/urls-context.ts b/packages/typedoc-plugin-markdown/src/theme/urls-context.ts index db9f1a6df..73b8b573d 100644 --- a/packages/typedoc-plugin-markdown/src/theme/urls-context.ts +++ b/packages/typedoc-plugin-markdown/src/theme/urls-context.ts @@ -45,8 +45,7 @@ export class UrlsContext { */ getUrls(): UrlMapping[] { const isPackages = - this.options.entryPointStrategy === EntryPointStrategy.Packages && - !Boolean(this.project.groups); + this.options.entryPointStrategy === EntryPointStrategy.Packages; const entryFileName = this.options.entryFileName as string;