https://github.com/angular/angular
Raw File
Tip revision: 98de2176400c86e6bbcb98754811af3f7c65280c authored by Jessica Janiuk on 28 April 2021, 18:58:23 UTC
release: cut the v12.0.0-rc.1 release (#41864)
Tip revision: 98de217
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