renovate/lib/modules/manager/ocb/index.ts

14 lines
359 B
TypeScript

import type { Category } from '../../../constants';
import { GoDatasource } from '../../datasource/go';
export { extractPackageFile } from './extract';
export { bumpPackageVersion } from './update';
export const supportedDatasources = [GoDatasource.id];
export const categories: Category[] = ['golang'];
export const defaultConfig = {
fileMatch: [],
};