Skip to content

Commit

Permalink
[LOCAL] Fix prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
cipolleschi committed Jan 8, 2025
1 parent cd7cf07 commit 5446d8c
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -325,13 +325,13 @@ function findNotLinkedLibraries(projectRoot) {
// We don't consider the case were `dependency-name.root` is equal to `null`, because that
// means that the library is not linked to the app at all, and in that case the dependency
// should be removed by the user.
dependency.platforms && Object.keys(dependency.platforms).forEach(platform => {
if (dependency.platforms[platform] == null) {
notLinkedPlatforms.push(platform);
}
});
dependency.platforms &&
Object.keys(dependency.platforms).forEach(platform => {
if (dependency.platforms[platform] == null) {
notLinkedPlatforms.push(platform);
}
});
notLinkedLibraries[name] = notLinkedPlatforms;

});
return notLinkedLibraries;
}
Expand Down

0 comments on commit 5446d8c

Please sign in to comment.