mirror of
https://github.com/renovatebot/renovate.git
synced 2024-12-22 13:38:32 +00:00
397ab49ef3
Co-authored-by: Michael Kriese <michael.kriese@gmx.de>
15 lines
485 B
TypeScript
15 lines
485 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { GitTagsDatasource } from '../../datasource/git-tags';
|
|
import { extractAllPackageFiles, extractPackageFile } from './extract';
|
|
|
|
export { extractAllPackageFiles, extractPackageFile };
|
|
|
|
export const url = 'https://batect.dev/docs';
|
|
export const categories: Category[] = ['batect'];
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['(^|/)batect(-bundle)?\\.ya?ml$'],
|
|
};
|
|
|
|
export const supportedDatasources = [GitTagsDatasource.id];
|