renovate/lib/modules/manager/cpanfile/index.ts

21 lines
561 B
TypeScript

import type { Category } from '../../../constants';
import { CpanDatasource } from '../../datasource/cpan';
import { GithubTagsDatasource } from '../../datasource/github-tags';
export { extractPackageFile } from './extract';
export const displayName = 'cpanfile';
export const url =
'https://metacpan.org/dist/Module-CPANfile/view/lib/cpanfile.pod';
export const defaultConfig = {
fileMatch: ['(^|/)cpanfile$'],
};
export const categories: Category[] = ['perl'];
export const supportedDatasources = [
CpanDatasource.id,
GithubTagsDatasource.id,
];