mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-14 16:46: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
12 lines
365 B
TypeScript
12 lines
365 B
TypeScript
import { GitTagsDatasource } from '../../datasource/git-tags';
|
|
import * as swiftVersioning from '../../versioning/swift';
|
|
|
|
export { extractPackageFile } from './extract';
|
|
|
|
export const supportedDatasources = [GitTagsDatasource.id];
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: ['(^|/)Package\\.swift'],
|
|
versioning: swiftVersioning.id,
|
|
rangeStrategy: 'bump',
|
|
};
|