Select Git revision
index.ts 560 B
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,
];