mirror of https://github.com/renovatebot/renovate
10 lines
389 B
TypeScript
10 lines
389 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { GlasskubePackagesDatasource } from '../../datasource/glasskube-packages';
|
|
|
|
export { extractAllPackageFiles, extractPackageFile } from './extract';
|
|
export const defaultConfig = {
|
|
fileMatch: [],
|
|
};
|
|
export const categories: Category[] = ['kubernetes', 'cd'];
|
|
export const supportedDatasources = [GlasskubePackagesDatasource.id];
|