Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 542 Bytes

File metadata and controls

32 lines (23 loc) · 542 Bytes

@gasket/plugin-docs-graphs

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

Installation

New apps

gasket create <app-name> --plugins @gasket/plugin-docs,@gasket/plugin-docs-graph

Existing apps

npm i @gasket/plugin-docs-graphs

Modify plugins section of your gasket.config.js:

module.exports = {
  plugins: {
    add: [
+      '@gasket/plugin-docs-graphs'
    ]
  }
}