mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 22:29:06 +00:00
397ab49ef3
Co-authored-by: Michael Kriese <michael.kriese@gmx.de>
15 lines
484 B
TypeScript
15 lines
484 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { GithubReleasesDatasource } from '../../datasource/github-releases';
|
|
import { id as versioning } from '../../versioning/semver';
|
|
|
|
export { extractPackageFile } from './extract';
|
|
export { updateArtifacts } from './artifacts';
|
|
|
|
export const categories: Category[] = ['batect'];
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['(^|/)batect$'],
|
|
versioning,
|
|
};
|
|
|
|
export const supportedDatasources = [GithubReleasesDatasource.id];
|