A Parcel transformer that turns Graphviz files into SVGs.
Add the library as a dependency:
npm install --save-dev parcel-transformer-graphviz
Add the library to your .parcelrc
file:
{
"extends": "@parcel/config-default",
"transformers": {
"*.{dot,gv}": ["parcel-transformer-graphviz"]
}
}