Skip to content

Instantly share code, notes, and snippets.

@hexaeder
hexaeder / depgraph.jl
Last active May 30, 2021 15:09
hacky script to create and plot depgraph of package
using Pkg
Pkg.activate(temp=true)
Pkg.add("PkgDeps")
Pkg.add("LightGraphs")
Pkg.add("GLMakie")
Pkg.add(url="https://github.com/JuliaPlots/GraphMakie.jl", rev="arrowheads")
using PkgDeps
using LightGraphs
using GLMakie
using GraphMakie