Select Git revision
pretty-stdout.ts
-
Rhys Arkins authored
Adds a new concept `logContext`, to be added to each log entry when in JSON format. Closes #5551
Rhys Arkins authoredAdds a new concept `logContext`, to be added to each log entry when in JSON format. Closes #5551
index.ts 554 B
import { 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,
];