mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 09:06:25 +00:00
17 lines
578 B
TypeScript
17 lines
578 B
TypeScript
import { DockerDatasource } from '../../datasource/docker';
|
|
import { HelmDatasource } from '../../datasource/helm';
|
|
export { updateArtifacts } from './artifacts';
|
|
export { extractPackageFile } from './extract';
|
|
export { bumpPackageVersion } from './update';
|
|
|
|
export const supportsLockFileMaintenance = true;
|
|
|
|
export const defaultConfig = {
|
|
registryAliases: {
|
|
stable: 'https://charts.helm.sh/stable',
|
|
},
|
|
commitMessageTopic: 'helm chart {{depName}}',
|
|
fileMatch: ['(^|/)Chart\\.yaml$'],
|
|
};
|
|
|
|
export const supportedDatasources = [DockerDatasource.id, HelmDatasource.id];
|