mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 13:48:55 +00:00
1743d81448
Co-authored-by: Rhys Arkins <rhys@arkins.net>
22 lines
699 B
TypeScript
22 lines
699 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { BazelDatasource } from '../../datasource/bazel';
|
|
import { DockerDatasource } from '../../datasource/docker';
|
|
import { GithubTagsDatasource } from '../../datasource/github-tags';
|
|
import { MavenDatasource } from '../../datasource/maven';
|
|
import { extractPackageFile } from './extract';
|
|
|
|
export { extractPackageFile };
|
|
|
|
export const url = 'https://bazel.build/external/module';
|
|
export const categories: Category[] = ['bazel'];
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['(^|/|\\.)MODULE\\.bazel$'],
|
|
};
|
|
|
|
export const supportedDatasources = [
|
|
BazelDatasource.id,
|
|
DockerDatasource.id,
|
|
GithubTagsDatasource.id,
|
|
MavenDatasource.id,
|
|
];
|