fix(jsdoc-doclet): improve visibility check for packages

This commit is contained in:
Jeff Williams 2023-10-06 15:17:56 -07:00
parent bb70100915
commit 31cd03d379
No known key found for this signature in database

View File

@ -261,6 +261,6 @@ export class Package {
}
isVisible() {
return true;
return this.kind === 'package' && this.longname && this.longname !== 'package:undefined';
}
}