We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78fab34 commit ec3d4d8Copy full SHA for ec3d4d8
1 file changed
utils/getRepo.js
@@ -31,11 +31,12 @@ module.exports = async () => {
31
headers: headers,
32
url: `https://api.github.com/users/${username}/repos?page=1&per_page=1000`,
33
};
34
-
35
await axios(options)
36
.then((res) => {
37
// console.log(res.data[1].description);
38
clear();
+ io.write("");
39
+
40
for (let i = 0; i < res.data.length; i++) {
41
table(
42
i + 1,
0 commit comments