https://github.com/angular/angular
Raw File
Tip revision: 054de6dc34504c782944cb04e7687aaae2323a34 authored by Andrew Scott on 06 July 2022, 16:28:37 UTC
release: cut the v14.0.5 release (#46724)
Tip revision: 054de6d
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