mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 05:39:10 +00:00
95efd9f6fe
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
16 lines
638 B
TypeScript
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;
|