mirror of https://github.com/renovatebot/renovate
14 lines
439 B
TypeScript
14 lines
439 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { GitTagsDatasource } from '../../datasource/git-tags';
|
|
import { extractAllPackageFiles, extractPackageFile } from './extract';
|
|
|
|
export { extractAllPackageFiles, extractPackageFile };
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['(^|/)batect(-bundle)?\\.ya?ml$'],
|
|
};
|
|
|
|
export const categories: Category[] = ['batect'];
|
|
|
|
export const supportedDatasources = [GitTagsDatasource.id];
|