Skip to content
Snippets Groups Projects
Commit f5e76ae0 authored by Rhys Arkins's avatar Rhys Arkins
Browse files

fix: use re2 for packageRules

parent eb95e0a5
No related branches found
No related tags found
No related merge requests found
...@@ -2,6 +2,7 @@ import minimatch from 'minimatch'; ...@@ -2,6 +2,7 @@ import minimatch from 'minimatch';
import { logger } from '../logger'; import { logger } from '../logger';
import * as versioning from '../versioning'; import * as versioning from '../versioning';
import { mergeChildConfig, PackageRule, UpdateType } from '../config'; import { mergeChildConfig, PackageRule, UpdateType } from '../config';
import { regEx } from './regex';
// TODO: move to `../config` // TODO: move to `../config`
export interface Config extends Record<string, any> { export interface Config extends Record<string, any> {
...@@ -140,7 +141,7 @@ function matchesRule(inputConfig: Config, packageRule: PackageRule): boolean { ...@@ -140,7 +141,7 @@ function matchesRule(inputConfig: Config, packageRule: PackageRule): boolean {
// name match is "or" so we check patterns if we didn't match names // name match is "or" so we check patterns if we didn't match names
if (!isMatch) { if (!isMatch) {
for (const packagePattern of packagePatterns) { for (const packagePattern of packagePatterns) {
const packageRegex = new RegExp( const packageRegex = regEx(
packagePattern === '^*$' || packagePattern === '*' packagePattern === '^*$' || packagePattern === '*'
? '.*' ? '.*'
: packagePattern : packagePattern
...@@ -166,7 +167,7 @@ function matchesRule(inputConfig: Config, packageRule: PackageRule): boolean { ...@@ -166,7 +167,7 @@ function matchesRule(inputConfig: Config, packageRule: PackageRule): boolean {
if (excludePackagePatterns.length) { if (excludePackagePatterns.length) {
let isMatch = false; let isMatch = false;
for (const pattern of excludePackagePatterns) { for (const pattern of excludePackagePatterns) {
const packageRegex = new RegExp( const packageRegex = regEx(
pattern === '^*$' || pattern === '*' ? '.*' : pattern pattern === '^*$' || pattern === '*' ? '.*' : pattern
); );
if (depName && depName.match(packageRegex)) { if (depName && depName.match(packageRegex)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment