https://github.com/angular/angular
Raw File
Tip revision: 65323286eda318b694a793c449887a5858a15069 authored by Dylan Hunn on 12 April 2022, 19:59:46 UTC
release: cut the v14.0.0-next.12 release (#45603)
Tip revision: 6532328
generate_org_chart.sh
#!/usr/bin/env bash
(    
    cd $(dirname $0)
    echo "digraph {"
    echo "rankdir=RL; splines=ortho; node [shape=box];"
    jq -f org_chart.jq --raw-output < ../../content/marketing/contributors.json
    echo "}"
) | dot -Tpng > org.png
back to top