返回 CodeWhale
release-credits.ts
根目录 / web / lib / release-credits.ts
1 /**
2 * release-credits.ts — community credit data for the website.
3 *
4 * CANONICAL SOURCE: docs/CONTRIBUTORS.md
5 * That file is the full per-PR contributor record in chronological order.
6 * This module is a snapshot of the latest release's merged/harvested
7 * contributors and issue helpers, kept in sync by the release process.
8 * When cutting a release, update both docs/CONTRIBUTORS.md AND this file.
9 *
10 * EXTENSION PATH FOR NEW LOCALES:
11 * The arrays below are locale-agnostic (GitHub handles). Locale-specific
12 * section labels and descriptions live in the page component. To add a
13 * new locale, update the page copy — no data changes needed here.
14 *
15 * See also:
16 * - .github/AUTHOR_MAP for identity mapping
17 * - CHANGELOG.md for the full release narrative
18 * - https://github.com/Hmbown/CodeWhale/graphs/contributors for the live list
19 */
20
21 /** Contributors whose PRs were merged or harvested into this release. */
22 export const RELEASE_CONTRIBUTORS: string[] = [
23 "@SparkofSpike",
24 "@XhesicaFrost",
25 "@aboimpinto",
26 "@bistack",
27 "@shenjackyuanjie",
28 "@vFONGv",
29 ];
30
31 /** Contributors who helped with reports, reproductions, and verification. */
32 export const RELEASE_HELPERS: string[] = [
33 "@DracheTek",
34 "@MuRongMoQing",
35 ];
36
36 lines TYPESCRIPT