mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 22:29:06 +00:00
397ab49ef3
Co-authored-by: Michael Kriese <michael.kriese@gmx.de>
13 lines
480 B
TypeScript
13 lines
480 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { DockerDatasource } from '../../datasource/docker';
|
|
import { HelmDatasource } from '../../datasource/helm';
|
|
export { extractPackageFile } from './extract';
|
|
|
|
export const url = 'https://github.com/Praqma/helmsman#readme';
|
|
export const categories: Category[] = ['cd', 'helm', 'kubernetes'];
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: [],
|
|
};
|
|
|
|
export const supportedDatasources = [HelmDatasource.id, DockerDatasource.id];
|