mirror of
https://github.com/renovatebot/renovate.git
synced 2024-12-22 21:48:32 +00:00
397ab49ef3
Co-authored-by: Michael Kriese <michael.kriese@gmx.de>
14 lines
441 B
TypeScript
14 lines
441 B
TypeScript
import type { Category } from '../../../constants';
|
|
import { GlasskubePackagesDatasource } from '../../datasource/glasskube-packages';
|
|
|
|
export { extractAllPackageFiles, extractPackageFile } from './extract';
|
|
|
|
export const url = 'https://glasskube.dev/docs';
|
|
export const categories: Category[] = ['kubernetes', 'cd'];
|
|
|
|
export const defaultConfig = {
|
|
fileMatch: [],
|
|
};
|
|
|
|
export const supportedDatasources = [GlasskubePackagesDatasource.id];
|