You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "ghost-github-portfolio",
3
-
"version": "0.3.2",
3
+
"version": "0.3.3",
4
4
"description": "Auto-sync GitHub repositories to a Ghost CMS portfolio page. Fetches repos, sorts by stars, generates cards with banners and badges, and updates Ghost via the Admin API.",
Copy file name to clipboardExpand all lines: src/index.ts
+16-10Lines changed: 16 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ program
14
14
.description(
15
15
"Auto-sync GitHub repositories to a Ghost CMS portfolio page. Fetches repos, sorts by stars, generates cards with banners and badges, and updates Ghost via the Admin API.",
16
16
)
17
-
.version("0.3.2");
17
+
.version("0.3.3");
18
18
19
19
program
20
20
.command("sync")
@@ -34,20 +34,26 @@ program
34
34
console.log(
35
35
`Fetching repos for ${config.github.username} (min ${config.portfolio.minStars} stars)...`,
36
36
);
37
-
constrepos=awaitfetchRepos(config);
37
+
constallRepos=awaitfetchRepos(config);
38
+
39
+
// Filter awesome lists for display only (stats use all repos)
0 commit comments