renovate/lib/modules/manager/helmsman/index.ts
Rhys Arkins dca3418bbd refactor: lib/modules (#14488)
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
2022-03-04 09:04:02 +01:00

8 lines
214 B
TypeScript

import { HelmDatasource } from '../../datasource/helm';
export { extractPackageFile } from './extract';
export const defaultConfig = {
fileMatch: [],
};
export const supportedDatasources = [HelmDatasource.id];