mirror of
https://github.com/renovatebot/renovate.git
synced 2025-05-12 23:51:55 +00:00
20 lines
615 B
TypeScript
20 lines
615 B
TypeScript
import { configFileNames } from '../../../config/app-strings';
|
|
import { GiteaTagsDatasource } from '../../datasource/gitea-tags';
|
|
import { GithubTagsDatasource } from '../../datasource/github-tags';
|
|
import { GitlabTagsDatasource } from '../../datasource/gitlab-tags';
|
|
|
|
export { extractPackageFile } from './extract';
|
|
|
|
export const url = '../../../config-presets.md';
|
|
|
|
export const defaultConfig = {
|
|
managerFilePatterns: configFileNames.filter(
|
|
(name) => name !== 'package.json',
|
|
),
|
|
};
|
|
|
|
export const supportedDatasources = [
|
|
GithubTagsDatasource.id,
|
|
GitlabTagsDatasource.id,
|
|
GiteaTagsDatasource.id,
|
|
];
|