File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1515 run : |
1616 echo "=== Repositories with shadcn and wrangler config ==="
1717
18- # Combine results from both searches
19- gh search code 'shadcn (path:wrangler.toml OR path:wrangler.jsonc)' \
18+ # Search for wrangler.toml
19+ echo "Searching wrangler.toml files..."
20+ gh search code 'shadcn path:wrangler.toml' \
2021 --limit 100 \
21- --json repository \
22- --jq '[.[] | .repository] | unique_by(.fullName) | sort_by(.stargazersCount) | reverse | .[0:20] | .[] | "\(.fullName) - ⭐ \(.stargazersCount) - \(.url)"'
22+ --json repository > toml_results.json
23+
24+ # Search for wrangler.jsonc
25+ echo "Searching wrangler.jsonc files..."
26+ gh search code 'shadcn path:wrangler.jsonc' \
27+ --limit 100 \
28+ --json repository > jsonc_results.json
29+
30+ # Combine and deduplicate results, sort by stars
31+ echo ""
32+ echo "=== Top 20 by Stars ==="
33+ j*
You can’t perform that action at this time.
0 commit comments