https://github.com/angular/angular
Raw File
Tip revision: b79ad226b2c6fc2dfaafe992facd7172fa0944c3 authored by Jessica Janiuk on 16 November 2022, 17:26:19 UTC
release: cut the v15.0.0 release
Tip revision: b79ad22
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