0
0
Fork 0
mirror of https://github.com/renovatebot/renovate.git synced 2025-01-11 05:39:10 +00:00
renovatebot_renovate/lib/modules/datasource/metadata-manual.ts
RahulGautamSingh 95efd9f6fe
test(lib/data): schemas for changelog and source urls (#32151)
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
2024-10-30 08:19:48 +00:00

16 lines
638 B
TypeScript

import changelogUrlsJson from '../../data/changelog-urls.json';
import sourceUrlsJson from '../../data/source-urls.json';
const { $schema: changelogSchema, ...changelogUrls } = changelogUrlsJson;
// Only necessary when the changelog data cannot be found in the package's source repository
export const manualChangelogUrls: Record<
string,
Record<string, string>
> = changelogUrls;
const { $schema: sourceUrlSchema, ...sourceUrls } = sourceUrlsJson;
// Only necessary when the changelog data cannot be found in the package's source repository
export const manualSourceUrls: Record<
string,
Record<string, string>
> = sourceUrls;