repo-tools: clarify reason for skipping API reports for inline packages
Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
@@ -1232,8 +1232,11 @@ export async function categorizePackageDirs(packageDirs: string[]) {
|
||||
if (!role) {
|
||||
return; // Ignore packages without roles
|
||||
}
|
||||
// TODO(Rugvip): Inlined packages are ignored because we can't handle @internal exports
|
||||
// gracefully, and we don't want to have to mark all exports @public etc.
|
||||
// It would be good if we could include these packages though.
|
||||
if (pkgJson?.backstage?.inline) {
|
||||
return; // Ignore inline packages
|
||||
return;
|
||||
}
|
||||
if (role === 'cli') {
|
||||
cliPackageDirs.push(dir);
|
||||
|
||||
Reference in New Issue
Block a user