mirror of
https://github.com/renovatebot/renovate.git
synced 2024-12-22 21:48:32 +00:00
397ab49ef3
Co-authored-by: Michael Kriese <michael.kriese@gmx.de>
14 lines
406 B
TypeScript
14 lines
406 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { GitTagsDatasource } from '../../datasource/git-tags';
|
|
|
|
export { extractPackageFile } from './extract';
|
|
|
|
export const url = 'https://github.com/yonaskolb/Mint#readme';
|
|
export const categories: Category[] = ['swift'];
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['(^|/)Mintfile$'],
|
|
};
|
|
|
|
export const supportedDatasources = [GitTagsDatasource.id];
|