renovate/lib/modules/manager/puppet/index.ts
Rhys Arkins b6ed33ec01
fix(regex): don’t escape forward slash in fileMatch (#19314)
This cleanup of default `fileMatch` values should be backwards compatible.
2023-03-10 09:34:39 +01:00

18 lines
560 B
TypeScript

import type { ProgrammingLanguage } from '../../../constants';
import { GitTagsDatasource } from '../../datasource/git-tags';
import { GithubTagsDatasource } from '../../datasource/github-tags';
import { PuppetForgeDatasource } from '../../datasource/puppet-forge';
export { extractPackageFile } from './extract';
export const language: ProgrammingLanguage = 'ruby';
export const defaultConfig = {
fileMatch: ['(^|/)Puppetfile$'],
};
export const supportedDatasources = [
PuppetForgeDatasource.id,
GithubTagsDatasource.id,
GitTagsDatasource.id,
];