angular-docs-cn/aio/scripts/contributors/generate_org_chart.sh
Alex Eagle 887faffa25 docs: cleanup contributors (#28930)
- remove individuals from @angular/* package.json, we don't keep them up-to-date
- switch keys in contributors.json to GitHub handles, seems like a better identifier and lets us grab avatar images from GitHub account
- move emeritus ppl to a new Alumni group (won't yet appear on the site)
- add "lead/mentor" keys so we know who is coordinating work
- add a script that generates an "org chart" graphic

PR Close #28930
2019-03-06 14:48:30 -08:00

7 lines
184 B
Bash
Executable File

#!/usr/bin/env bash
(
cd $(dirname $0)
echo "digraph {"
jq -f org_chart.jq --raw-output < ../../content/marketing/contributors.json
echo "}"
) | dot -Tpng > org.png