From 95a27dad5a25afc8cd7fe8a3a20c06518692beec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=B4=EC=A2=85=EA=B2=BD?= Date: Tue, 5 May 2026 19:05:00 +0900 Subject: [PATCH 1/2] refactor(team): convert team data file to TypeScript --- docs/_data/team.js | 122 --------------------------------------------- docs/_data/team.ts | 121 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 121 insertions(+), 122 deletions(-) delete mode 100644 docs/_data/team.js create mode 100644 docs/_data/team.ts diff --git a/docs/_data/team.js b/docs/_data/team.js deleted file mode 100644 index 1ec6b97403..0000000000 --- a/docs/_data/team.js +++ /dev/null @@ -1,122 +0,0 @@ -/** @type {import('@voidzero-dev/vitepress-theme').TeamMember[]} */ -export const core = [ - { - avatar: 'https://github.com/fengmk2.png', - name: 'MK', - links: [{ icon: 'github', link: 'https://github.com/fengmk2' }, - { icon: 'x', link: 'https://x.com/fengmk2' }, - ], - }, - { - avatar: 'https://github.com/branchseer.png', - name: 'Wang Chi', - links: [ - { icon: 'github', link: 'https://github.com/branchseer' }, - { icon: 'x', link: 'https://x.com/branchseer' } - ], - }, - { - avatar: 'https://github.com/Brooooooklyn.png', - name: 'Long Yinan', - links: [ - { icon: 'github', link: 'https://github.com/Brooooooklyn' }, - { icon: 'x', link: 'https://x.com/Brooooook_lyn' }, - ], - }, - { - avatar: 'https://github.com/cpojer.png', - name: 'Christoph Nakazawa', - links: [ - { icon: 'github', link: 'https://github.com/cpojer' }, - { icon: 'x', link: 'https://x.com/cpojer' }, - { icon: 'bluesky', link: 'https://bsky.app/profile/christoph.nkzw.tech' }, - ], - }, - { - avatar: 'https://github.com/TheAlexLichter.png', - name: 'Alexander Lichter', - links: [ - { icon: 'github', link: 'https://github.com/TheAlexLichter' }, - { icon: 'x', link: 'https://x.com/TheAlexLichter' }, - { icon: 'bluesky', link: 'https://bsky.app/profile/thealexlichter.com' }, - ], - }, - { - avatar: 'https://github.com/camc314.png', - name: 'Cameron Clark', - links: [ - { icon: 'github', link: 'https://github.com/camc314' }, - { icon: 'x', link: 'https://x.com/cameron_C2' }, - ], - }, - { - avatar: 'https://github.com/leaysgur.png', - name: 'Yuji Sugiura', - links: [ - { icon: 'github', link: 'https://github.com/leaysgur' }, - { icon: 'x', link: 'https://x.com/leaysgur' }, - ], - }, - { - avatar: 'https://github.com/mdong1909.png', - name: 'Michael Dong', - links: [ - { icon: 'github', link: 'https://github.com/mdong1909' }, - { icon: 'x', link: 'https://x.com/mdong1909' }, - { icon: 'linkedin', link: 'https://www.linkedin.com/in/michael-d-612b5b50/' }, - ], - }, - { - avatar: 'https://github.com/kazupon.png', - name: 'kazupon', - links: [ - { icon: 'github', link: 'https://github.com/kazupon' }, - { icon: 'x', link: 'https://x.com/kazu_pon' }, - { icon: 'bluesky', link: 'https://bsky.app/profile/kazupon.dev' }, - ], - }, - { - avatar: 'https://github.com/ubugeeei.png', - name: 'ubugeeei', - links: [ - { icon: 'github', link: 'https://github.com/ubugeeei' }, - { icon: 'x', link: 'https://x.com/ubugeeei' }, - ], - }, - { - avatar: 'https://github.com/nekomoyi.png', - name: 'nekomoyi', - links: [ - { icon: 'github', link: 'https://github.com/nekomoyi' }, - ], - }, - { - avatar: 'https://github.com/HaasStefan.png', - name: 'Stefan Haas', - links: [ - { icon: 'github', link: 'https://github.com/HaasStefan' }, - { icon: 'x', link: 'https://x.com/StefanvHaas' }, - { icon: 'linkedin', link: 'https://www.linkedin.com/in/stefan-haas-angular' }, - ], - }, - { - avatar: 'https://github.com/naokihaba.png', - name: 'naokihaba', - links: [ - { icon: 'github', link: 'https://github.com/naokihaba' }, - { icon: 'x', link: 'https://x.com/naokihaba' }, - { icon: 'bluesky', link: 'https://bsky.app/profile/naokihaba.com' }, - ], - }, - { - avatar: 'https://github.com/jong-kyung.png', - name: 'JongKyung Lee', - links: [ - { icon: 'github', link: 'https://github.com/jong-kyung' }, - { icon: 'linkedin', link: 'https://www.linkedin.com/in/jong-kyung' }, - ], - }, -] - -/** @type {import('@voidzero-dev/vitepress-theme').TeamMember[]} */ -export const emeriti = [] diff --git a/docs/_data/team.ts b/docs/_data/team.ts new file mode 100644 index 0000000000..6509bd63ed --- /dev/null +++ b/docs/_data/team.ts @@ -0,0 +1,121 @@ +import type { DefaultTheme } from "vitepress"; + +export const core: DefaultTheme.TeamMember[] = [ + { + avatar: "https://github.com/fengmk2.png", + name: "MK", + links: [ + { icon: "github", link: "https://github.com/fengmk2" }, + { icon: "x", link: "https://x.com/fengmk2" }, + ], + }, + { + avatar: "https://github.com/branchseer.png", + name: "Wang Chi", + links: [ + { icon: "github", link: "https://github.com/branchseer" }, + { icon: "x", link: "https://x.com/branchseer" }, + ], + }, + { + avatar: "https://github.com/Brooooooklyn.png", + name: "Long Yinan", + links: [ + { icon: "github", link: "https://github.com/Brooooooklyn" }, + { icon: "x", link: "https://x.com/Brooooook_lyn" }, + ], + }, + { + avatar: "https://github.com/cpojer.png", + name: "Christoph Nakazawa", + links: [ + { icon: "github", link: "https://github.com/cpojer" }, + { icon: "x", link: "https://x.com/cpojer" }, + { icon: "bluesky", link: "https://bsky.app/profile/christoph.nkzw.tech" }, + ], + }, + { + avatar: "https://github.com/TheAlexLichter.png", + name: "Alexander Lichter", + links: [ + { icon: "github", link: "https://github.com/TheAlexLichter" }, + { icon: "x", link: "https://x.com/TheAlexLichter" }, + { icon: "bluesky", link: "https://bsky.app/profile/thealexlichter.com" }, + ], + }, + { + avatar: "https://github.com/camc314.png", + name: "Cameron Clark", + links: [ + { icon: "github", link: "https://github.com/camc314" }, + { icon: "x", link: "https://x.com/cameron_C2" }, + ], + }, + { + avatar: "https://github.com/leaysgur.png", + name: "Yuji Sugiura", + links: [ + { icon: "github", link: "https://github.com/leaysgur" }, + { icon: "x", link: "https://x.com/leaysgur" }, + ], + }, + { + avatar: "https://github.com/mdong1909.png", + name: "Michael Dong", + links: [ + { icon: "github", link: "https://github.com/mdong1909" }, + { icon: "x", link: "https://x.com/mdong1909" }, + { icon: "linkedin", link: "https://www.linkedin.com/in/michael-d-612b5b50/" }, + ], + }, + { + avatar: "https://github.com/kazupon.png", + name: "kazupon", + links: [ + { icon: "github", link: "https://github.com/kazupon" }, + { icon: "x", link: "https://x.com/kazupon" }, + { icon: "bluesky", link: "https://bsky.app/profile/kazupon.dev" }, + ], + }, + { + avatar: "https://github.com/ubugeeei.png", + name: "ubugeeei", + links: [ + { icon: "github", link: "https://github.com/ubugeeei" }, + { icon: "x", link: "https://x.com/ubugeeei" }, + ], + }, + { + avatar: "https://github.com/nekomoyi.png", + name: "nekomoyi", + links: [{ icon: "github", link: "https://github.com/nekomoyi" }], + }, + { + avatar: "https://github.com/HaasStefan.png", + name: "Stefan Haas", + links: [ + { icon: "github", link: "https://github.com/HaasStefan" }, + { icon: "x", link: "https://x.com/StefanvHaas" }, + { icon: "linkedin", link: "https://www.linkedin.com/in/stefan-haas-angular" }, + ], + }, + { + avatar: "https://github.com/naokihaba.png", + name: "naokihaba", + links: [ + { icon: "github", link: "https://github.com/naokihaba" }, + { icon: "x", link: "https://x.com/naokihaba" }, + { icon: "bluesky", link: "https://bsky.app/profile/naokihaba.com" }, + ], + }, + { + avatar: "https://github.com/jong-kyung.png", + name: "JongKyung Lee", + links: [ + { icon: "github", link: "https://github.com/jong-kyung" }, + { icon: "linkedin", link: "https://www.linkedin.com/in/jong-kyung" }, + ], + }, +]; + +export const emeriti: DefaultTheme.TeamMember[] = []; From 6f5749f422fa98ac699995e6054edbc604214d1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=B4=EC=A2=85=EA=B2=BD?= Date: Tue, 5 May 2026 19:38:45 +0900 Subject: [PATCH 2/2] chore(tsconfig): exclude packages/cli/docs from typecheck --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index 7be7b1a51b..4369fcad55 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -17,6 +17,7 @@ }, "exclude": [ "ecosystem-ci", + "packages/cli/docs", "packages/cli/snap-tests", "packages/cli/snap-tests-global", // Symlinks to vite submodule files that don't use .js extensions;