renovate/lib/modules/manager/jsonnet-bundler/index.ts
Sebastian Poxhofer 19259a0383 feat!: categories (#16534)
Closes #13953

Co-authored-by: Rhys Arkins <rhys@arkins.net>
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
Co-authored-by: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com>

BREAKING CHANGE: languages are now called categories instead
2023-07-04 19:21:52 +02:00

15 lines
490 B
TypeScript

import type { Category } from '../../../constants';
import { GitTagsDatasource } from '../../datasource/git-tags';
export { updateArtifacts } from './artifacts';
export { extractPackageFile } from './extract';
export const supportsLockFileMaintenance = true;
export const defaultConfig = {
fileMatch: ['(^|/)jsonnetfile\\.json$'],
datasource: GitTagsDatasource.id,
};
export const categories: Category[] = ['kubernetes'];
export const supportedDatasources = [GitTagsDatasource.id];