Skip to content

Commit 855b1d5

Browse files
run prettier
1 parent 41139ff commit 855b1d5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/installer.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -210,9 +210,9 @@ async function fetchVersions(
210210
}
211211

212212
return tags
213-
.filter(tag => tag.tag_name.match(/v\d+\.[\w.]+/g))
214-
.filter(tag => includePrerelease(tag.prerelease, includePreReleases))
215-
.map(tag => tag.tag_name.replace("v", ""));
213+
.filter((tag) => tag.tag_name.match(/v\d+\.[\w.]+/g))
214+
.filter((tag) => includePrerelease(tag.prerelease, includePreReleases))
215+
.map((tag) => tag.tag_name.replace("v", ""));
216216
}
217217

218218
// Compute an actual version starting from the `version` configuration param.

0 commit comments

Comments
 (0)