Skip to content
Snippets Groups Projects
Commit 31c12206 authored by Rhys Arkins's avatar Rhys Arkins
Browse files

fix: gitref -> gitRef

parent 11aff041
No related branches found
No related tags found
No related merge requests found
...@@ -16,7 +16,7 @@ export type DigestConfig = Config; ...@@ -16,7 +16,7 @@ export type DigestConfig = Config;
export interface Release { export interface Release {
changelogUrl?: string; changelogUrl?: string;
gitref?: string; gitRef?: string;
isDeprecated?: boolean; isDeprecated?: boolean;
releaseTimestamp?: any; releaseTimestamp?: any;
......
...@@ -37,7 +37,7 @@ export async function getPkgReleases({ ...@@ -37,7 +37,7 @@ export async function getPkgReleases({
sourceUrl, sourceUrl,
releases: tags.map(tag => ({ releases: tags.map(tag => ({
version: semver.isValid(tag), version: semver.isValid(tag),
gitref: tag, gitRef: tag,
})), })),
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment