Skip to content

Commit

Permalink
Add support for yarn, composer in frozen deps check.
Browse files Browse the repository at this point in the history
  • Loading branch information
inferno-chromium committed Dec 9, 2020
1 parent 87997ff commit ab2c9d4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions checks/frozen_deps.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,12 @@ func FrozenDeps(c checker.Checker) checker.CheckResult {
case "cargo.lock":
c.Logf("rust crates found: %s", name)
return passResult
case "yarn.lock":
c.Logf("yarn packages found: %s", name)
return passResult
case "composer.lock":
c.Logf("composer packages found: %s", name)
return passResult
}
}
return checker.CheckResult{
Expand Down
File renamed without changes.

0 comments on commit ab2c9d4

Please sign in to comment.