mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 09:06: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
20 lines
648 B
TypeScript
20 lines
648 B
TypeScript
import { GitTagsDatasource } from '../../datasource/git-tags';
|
|
import { GithubTagsDatasource } from '../../datasource/github-tags';
|
|
import { GitlabTagsDatasource } from '../../datasource/gitlab-tags';
|
|
import { PodDatasource } from '../../datasource/pod';
|
|
import * as rubyVersioning from '../../versioning/ruby';
|
|
|
|
export { extractPackageFile } from './extract';
|
|
export { updateArtifacts } from './artifacts';
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['(^|/)Podfile$'],
|
|
versioning: rubyVersioning.id,
|
|
};
|
|
|
|
export const supportedDatasources = [
|
|
GitTagsDatasource.id,
|
|
GithubTagsDatasource.id,
|
|
GitlabTagsDatasource.id,
|
|
PodDatasource.id,
|
|
];
|