mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 09:06:25 +00:00
7dbe0b3312
Co-authored-by: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com> Co-authored-by: Michael Kriese <michael.kriese@visualon.de> Co-authored-by: Rhys Arkins <rhys@arkins.net>
12 lines
335 B
TypeScript
12 lines
335 B
TypeScript
import { GitTagsDatasource } from '../../datasource/git-tags';
|
|
|
|
export const displayName = 'Mint';
|
|
export const url = 'https://github.com/yonaskolb/Mint';
|
|
|
|
export { extractPackageFile } from './extract';
|
|
|
|
export const supportedDatasources = [GitTagsDatasource.id];
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['(^|\\/)Mintfile$'],
|
|
};
|