https://github.com/angular/angular
Raw File
Tip revision: 1f1822216ebdc7708562b2038dfdf115d7f22905 authored by Andrew Kushnir on 11 August 2021, 17:25:57 UTC
release: cut the v13.0.0-next.1 release (#43119)
Tip revision: 1f18222
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