mirror of https://github.com/renovatebot/renovate
16 lines
435 B
TypeScript
16 lines
435 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { GitTagsDatasource } from '../../datasource/git-tags';
|
|
|
|
export const displayName = 'Mint';
|
|
export const url = 'https://github.com/yonaskolb/Mint';
|
|
|
|
export { extractPackageFile } from './extract';
|
|
|
|
export const categories: Category[] = ['swift'];
|
|
|
|
export const supportedDatasources = [GitTagsDatasource.id];
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['(^|/)Mintfile$'],
|
|
};
|