Skip to content

A Parcel transformer that turns Graphviz files into SVGs.

License

Notifications You must be signed in to change notification settings

thewilkybarkid/parcel-transformer-graphviz

Repository files navigation

parcel-transformer-graphviz

A Parcel transformer that turns Graphviz files into SVGs.

Installation

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"]
  }
}