renovate/lib/modules/manager/bazelisk/index.ts
Rhys Arkins b6ed33ec01
fix(regex): don’t escape forward slash in fileMatch (#19314)
This cleanup of default `fileMatch` values should be backwards compatible.
2023-03-10 09:34:39 +01:00

10 lines
290 B
TypeScript

import { GithubReleasesDatasource } from '../../datasource/github-releases';
export { extractPackageFile } from './extract';
export const defaultConfig = {
fileMatch: ['(^|/)\\.bazelversion$'],
pinDigests: false,
};
export const supportedDatasources = [GithubReleasesDatasource.id];