Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 468 Bytes

File metadata and controls

26 lines (18 loc) · 468 Bytes

@gasket/plugin-docs-graphs

The plugin hooks the docsGenerate lifecycle to provide a mermaid graph of a given application's lifecycles.

Installation

npm i @gasket/plugin-docs-graphs

Update your gasket file plugin configuration:

// gasket.js

+ import pluginDocsGraphs from '@gasket/plugin-docs-graphs';

 export default makeGasket({
  plugins: [
+   pluginDocsGraphs
  ]
});