Skip to content

Commit

Permalink
refactor(bun): extract res type
Browse files Browse the repository at this point in the history
  • Loading branch information
rarkins committed Oct 17, 2023
1 parent c2cb93c commit 68ca88a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/modules/manager/bun/extract.ts
Expand Up @@ -42,11 +42,13 @@ export async function extractAllPackageFiles(
logger.debug({ packageFile }, 'No dependencies found');
continue;
}
packageFiles.push({

const res: PackageFile = {
...extracted,
packageFile,
lockFiles: [matchedFile],
});
};
packageFiles.push(res);
}

return packageFiles;
Expand Down

0 comments on commit 68ca88a

Please sign in to comment.