Skip to content

Commit

Permalink
Fixes #848 (#849)
Browse files Browse the repository at this point in the history
Signed-off-by: Prabhu Subramanian <[email protected]>
  • Loading branch information
prabhu authored Jan 29, 2024
1 parent 360418f commit 7d8e5be
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4459,7 +4459,11 @@ export const createCsharpBom = async (path, options) => {
if (FETCH_LICENSE) {
const retMap = await getNugetMetadata(pkgList, dependencies);
if (retMap.dependencies && retMap.dependencies.length) {
dependencies = dependencies.concat(retMap.dependencies);
dependencies = mergeDependencies(
dependencies,
retMap.dependencies,
parentComponent
);
}
pkgList = trimComponents(pkgList, "json");
}
Expand Down

0 comments on commit 7d8e5be

Please sign in to comment.