mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 09:06:25 +00:00
b6ed33ec01
This cleanup of default `fileMatch` values should be backwards compatible.
10 lines
290 B
TypeScript
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];
|