Allow for latest 100 rebar3 versions when fetching from GitHub (#42)

This commit is contained in:
Paulo F. Oliveira
2021-05-28 02:28:05 +01:00
committed by GitHub
parent e332dc64ad
commit 11d59b146c
5 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -4859,7 +4859,7 @@ async function getElixirVersions() {
async function getRebar3Versions() {
const resultJSON = await get(
'https://api.github.com/repos/erlang/rebar3/releases',
'https://api.github.com/repos/erlang/rebar3/releases?per_page=100',
)
const rebar3VersionsListing = JSON.parse(resultJSON)
.map((x) => x.tag_name)