mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-22 04:26:25 +00:00
dca3418bbd
Moves datasource, manager, platform and versioning code from lib/ into new lib/modules/ BREAKING CHANGE: External tools must update paths to datasource, manager, platform and versioning
17 lines
757 B
TypeScript
17 lines
757 B
TypeScript
import { GithubTagsDatasource } from '../../datasource/github-tags';
|
|
import { GitlabTagsDatasource } from '../../datasource/gitlab-tags';
|
|
export { extractPackageFile } from './extract';
|
|
|
|
export const supportedDatasources = [
|
|
GithubTagsDatasource.id,
|
|
GitlabTagsDatasource.id,
|
|
];
|
|
|
|
export const defaultConfig = {
|
|
commitMessageTopic: 'pre-commit hook {{depName}}',
|
|
enabled: false,
|
|
fileMatch: ['(^|/)\\.pre-commit-config\\.yaml$'],
|
|
prBodyNotes: [
|
|
'Note: The `pre-commit` manager in Renovate is not supported by the `pre-commit` maintainers or community. Please do not report any problems there, instead [create a Discussion in the Renovate repository](https://github.com/renovatebot/renovate/discussions/new) if you have any questions.',
|
|
],
|
|
};
|