Skip to content

Commit f7f8880

Browse files
committed
docs: update and rotate projects in used by
1 parent 329ce10 commit f7f8880

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

apps/website/assets/used_by.png

-16.4 KB
Loading

apps/website/public/used_by.png

-16.4 KB
Loading

assets/NOTABLE_PROJECTS_USING_ESLINT_REACT

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
1-
https://github.com/ant-design/ant-design
21
https://github.com/DimensionDev/Maskbook
3-
https://github.com/dream-num/univer
42
https://github.com/electric-sql/pglite
5-
https://github.com/ensdomains/ensdomains-landing
3+
https://github.com/ensdomains/thorin
64
https://github.com/flirtual/flirtual
75
https://github.com/hashintel/hash
6+
https://github.com/langgenius/dify
87
https://github.com/npmgraph/npmgraph
8+
https://github.com/offlegacy/event-tracker
9+
https://github.com/prettier/prettier
910
https://github.com/react-navigation/react-navigation
1011
https://github.com/refined-github/refined-github
1112
https://github.com/RSSNext/Follow
13+
https://github.com/TanStack/form
1214
https://github.com/TanStack/query
15+
https://github.com/TanStack/router
16+
https://github.com/TanStack/store
1317
https://github.com/toss/suspensive
1418
https://github.com/upleveled/eslint-config-upleveled
1519
https://github.com/XYOracleNetwork/sdk-xyo-react-js
16-
https://github.com/zolplay-cn/config-monorepo

scripts/build-used-by.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ const token = process.env["GITHUB_TOKEN"];
6161
const data = await fs.readFile("assets/NOTABLE_PROJECTS_USING_ESLINT_REACT", "utf-8");
6262
const repos = data.trim().split("\n").map((item) => item.replace("https://github.com/", ""));
6363
const avatars = await Promise.all(repos.map(async (repo) => fetchGitHubAvatar(repo, token)));
64-
const img = await buildUsedByImage(avatars);
64+
const avatarsDeduped = [...new Set(avatars)];
65+
const img = await buildUsedByImage(avatarsDeduped);
6566
await fs.writeFile("apps/website/assets/used_by.png", img);
6667
await fs.writeFile("apps/website/public/used_by.png", img);

0 commit comments

Comments
 (0)