mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 06:56:24 +00:00
feat(managers/cpanfile): add perl category (#23808)
This commit is contained in:
parent
4db86c202a
commit
bd3c3e3ee9
3 changed files with 5 additions and 0 deletions
|
@ -17,6 +17,7 @@ const Categories = [
|
|||
'js',
|
||||
'kubernetes',
|
||||
'node',
|
||||
'perl',
|
||||
'php',
|
||||
'python',
|
||||
'ruby',
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
import type { Category } from '../../../constants';
|
||||
import { CpanDatasource } from '../../datasource/cpan';
|
||||
import { GithubTagsDatasource } from '../../datasource/github-tags';
|
||||
|
||||
|
@ -11,6 +12,8 @@ export const defaultConfig = {
|
|||
fileMatch: ['(^|/)cpanfile$'],
|
||||
};
|
||||
|
||||
export const categories: Category[] = ['perl'];
|
||||
|
||||
export const supportedDatasources = [
|
||||
CpanDatasource.id,
|
||||
GithubTagsDatasource.id,
|
||||
|
|
|
@ -42,6 +42,7 @@ export const CategoryNames: Record<Category, string> = {
|
|||
js: 'JavaScript',
|
||||
kubernetes: 'Kubernetes',
|
||||
node: 'Node.js',
|
||||
perl: 'Perl',
|
||||
php: 'PHP',
|
||||
python: 'Python',
|
||||
ruby: 'Ruby',
|
||||
|
|
Loading…
Reference in a new issue