mirror of https://github.com/renovatebot/renovate
13 lines
416 B
TypeScript
13 lines
416 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { DockerDatasource } from '../../datasource/docker';
|
|
import { HelmDatasource } from '../../datasource/helm';
|
|
export { extractPackageFile } from './extract';
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: [],
|
|
};
|
|
|
|
export const categories: Category[] = ['cd', 'helm', 'kubernetes'];
|
|
|
|
export const supportedDatasources = [HelmDatasource.id, DockerDatasource.id];
|