mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 13:48:55 +00:00
397ab49ef3
Co-authored-by: Michael Kriese <michael.kriese@gmx.de>
27 lines
836 B
TypeScript
27 lines
836 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { DockerDatasource } from '../../datasource/docker';
|
|
import { GithubReleasesDatasource } from '../../datasource/github-releases';
|
|
import { GithubTagsDatasource } from '../../datasource/github-tags';
|
|
import { GoDatasource } from '../../datasource/go';
|
|
import { updateArtifacts } from './artifacts';
|
|
import { extractPackageFile } from './extract';
|
|
|
|
export { extractPackageFile, updateArtifacts };
|
|
|
|
export const url = 'https://bazel.build/docs';
|
|
export const categories: Category[] = ['bazel'];
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: [
|
|
'(^|/)WORKSPACE(|\\.bazel|\\.bzlmod)$',
|
|
'\\.WORKSPACE\\.bazel$',
|
|
'\\.bzl$',
|
|
],
|
|
};
|
|
|
|
export const supportedDatasources = [
|
|
DockerDatasource.id,
|
|
GithubReleasesDatasource.id,
|
|
GithubTagsDatasource.id,
|
|
GoDatasource.id,
|
|
];
|