0
0
Fork 0
mirror of https://github.com/renovatebot/renovate.git synced 2025-05-12 23:51:55 +00:00
renovatebot_renovate/lib/modules/manager/custom/api.ts
RahulGautamSingh fc8b8f9b61
feat(managers/custom): generic manager for json files (#32784)
Co-authored-by: Rhys Arkins <rhys@arkins.net>
Co-authored-by: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com>
2025-01-30 11:52:39 +00:00

9 lines
235 B
TypeScript

import type { ManagerApi } from '../types';
import * as jsonata from './jsonata';
import * as regex from './regex';
const api = new Map<string, ManagerApi>();
export default api;
api.set('regex', regex);
api.set('jsonata', jsonata);