renovate/lib/util/package-rules/sourceurls.ts

21 lines
559 B
TypeScript

import is from '@sindresorhus/is';
import type { PackageRule, PackageRuleInputConfig } from '../../config/types';
import { matchRegexOrGlobList } from '../string-match';
import { Matcher } from './base';
export class SourceUrlsMatcher extends Matcher {
override matches(
{ sourceUrl }: PackageRuleInputConfig,
{ matchSourceUrls }: PackageRule,
): boolean | null {
if (is.undefined(matchSourceUrls)) {
return null;
}
if (!sourceUrl) {
return false;
}
return matchRegexOrGlobList(sourceUrl, matchSourceUrls);
}
}