File tree Expand file tree Collapse file tree 2 files changed +4
-9
lines changed Expand file tree Collapse file tree 2 files changed +4
-9
lines changed Original file line number Diff line number Diff line change 2
2
3
3
### Bug Fixes
4
4
5
+ - TypeDoc will no longer skip entry points which have no exports, #2007 .
6
+ If using ` "entryPointStrategy": "expand" ` , this change may result in new pages being added to your documentation.
7
+ If this is not desired, you can use the ` exclude ` option to filter them out.
5
8
- Fixed missing comments on callable variable-functions constructed indirectly, #2008 .
6
9
- Fixed multiple reflections mapping to the same file name on case insensitive file systems, #2012 .
7
10
Original file line number Diff line number Diff line change @@ -240,15 +240,6 @@ export class Converter extends ChildableComponent<
240
240
const symbol = getSymbolForModuleLike ( context , node ) ;
241
241
let moduleContext : Context ;
242
242
243
- const allExports = getExports ( context , node , symbol ) ;
244
-
245
- if ( allExports . every ( ( exp ) => this . shouldIgnore ( exp ) ) ) {
246
- this . owner . logger . verbose (
247
- `All members of ${ entryName } are excluded, ignoring entry point.`
248
- ) ;
249
- return ;
250
- }
251
-
252
243
if ( singleEntryPoint ) {
253
244
// Special case for when we're giving a single entry point, we don't need to
254
245
// create modules for each entry. Register the project as this module.
@@ -302,6 +293,7 @@ export class Converter extends ChildableComponent<
302
293
moduleContext = context . withScope ( reflection ) ;
303
294
}
304
295
296
+ const allExports = getExports ( context , node , symbol ) ;
305
297
for ( const exp of allExports . filter ( ( exp ) =>
306
298
isDirectExport ( context . resolveAliasedSymbol ( exp ) , node )
307
299
) ) {
You can’t perform that action at this time.
0 commit comments