Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 449 Bytes

File metadata and controls

25 lines (18 loc) · 449 Bytes

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