https://github.com/angular/angular
Raw File
Tip revision: fc9da5ed8c03e0d063676ce47be67348f2094137 authored by Andrew Kushnir on 28 June 2023, 15:08:59 UTC
release: cut the v16.2.0-next.1 release
Tip revision: fc9da5e
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