diff --git a/src/commands/init/githubHelpers.js b/src/commands/init/githubHelpers.js index 6f4a61f..049990a 100644 --- a/src/commands/init/githubHelpers.js +++ b/src/commands/init/githubHelpers.js @@ -1,7 +1,8 @@ import got from 'got'; export function getOfficialTemplates() { - return got('https://api.github.com/users/rocjs/repos', { + // TODO Implement pagination support before we reach over 100 repositories + return got('https://api.github.com/users/rocjs/repos?per_page=100', { json: true, }) .then(response => response.body)