Skip to content

Commit

Permalink
Update the homepage to link to the directory listing for each package
Browse files Browse the repository at this point in the history
  • Loading branch information
j-f1 committed Sep 2, 2019
1 parent 677fec0 commit a991ca3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/homepage.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const homepageHTML = /* HTML */ `
.sort((nameA, nameB) => nameA.localeCompare(nameB))
.map(name => {
const entry = getEntry(name);
const link = `https://deno.land/x/${name}/README.md`;
const link = `https://deno.land/x/${name}/`;
return `<li><a href="${link}">${name}</a> (<a href="${entry.repo}">repo</a>)</li>`;
})
.join("\n")}
Expand Down

0 comments on commit a991ca3

Please sign in to comment.