Skip to content

Commit

Permalink
refactor(packageRules): allow async matchers (#31828)
Browse files Browse the repository at this point in the history
  • Loading branch information
rarkins authored Oct 7, 2024
1 parent 6d20f4f commit b6cff31
Show file tree
Hide file tree
Showing 8 changed files with 156 additions and 147 deletions.
2 changes: 1 addition & 1 deletion lib/util/package-rules/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ export abstract class Matcher implements MatcherApi {
abstract matches(
inputConfig: PackageRuleInputConfig,
packageRule: PackageRule,
): boolean | null;
): boolean | null | Promise<boolean | null>;
}
Loading

0 comments on commit b6cff31

Please sign in to comment.