Skip to content

Commit

Permalink
fix: add pnpm-lock.yaml to default scan set
Browse files Browse the repository at this point in the history
resolves #375
  • Loading branch information
jeremylong committed Sep 1, 2024
1 parent 6a96550 commit 052f9c6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ abstract class AbstractAnalyze extends ConfiguredTask {
List<String> toScan = ['src/main/resources', 'src/main/webapp',
'./package.json', './package-lock.json',
'./npm-shrinkwrap.json', './yarn.lock',
'./pnpm.lock', './Gopkg.lock', './go.mod']
'./pnpm.lock', 'pnpm-lock.yaml', './Gopkg.lock', './go.mod']
toScan.each {
File f = project.file it
if (f.exists()) {
Expand Down

0 comments on commit 052f9c6

Please sign in to comment.