mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 09:06:25 +00:00
b6ed33ec01
This cleanup of default `fileMatch` values should be backwards compatible.
18 lines
560 B
TypeScript
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,
|
|
];
|