Skip to content

Commit

Permalink
fix: get all orgs repos instead of few
Browse files Browse the repository at this point in the history
  • Loading branch information
oleg-koval committed Mar 19, 2018
1 parent 3ae8eb0 commit 1a662b4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const getReposList = Promise.method(() => {
return getRepos
.then((repos) => {
const { data: reposList } = repos;
return reposList.slice(1, 5);
return reposList;
})
.catch((err) => {
console.log({ err }, 'getReposList: Error during getting repos list');
Expand Down
2 changes: 2 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# github-orgs-packages ![linted_by _sexy](https://img.shields.io/badge/linted_by-_sexy-brightgreen.svg)

# Description

Get information for all packages inside of your github organisation

```sh
Expand Down

0 comments on commit 1a662b4

Please sign in to comment.