mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 13:48:55 +00:00
397ab49ef3
Co-authored-by: Michael Kriese <michael.kriese@gmx.de>
14 lines
472 B
TypeScript
14 lines
472 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://projectsveltos.github.io/sveltos';
|
|
export const categories: Category[] = ['kubernetes', 'cd'];
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: [],
|
|
};
|
|
|
|
export const supportedDatasources = [DockerDatasource.id, HelmDatasource.id];
|