Skip to content

Releases: TimKolberger/docusaurus-plugin-structurizr

docusaurus-plugin-structurizr@0.5.0

27 Apr 14:31
ea3129a
Compare
Choose a tag to compare

Minor Changes

  • #160
    f7562f3
    Thanks @TimKolberger! - Support generating all diagrams in one
    output directory.

    By default, the option outputDir is undefined and all diagrams are generated in the same
    directory as the source file.

    Set outputDir to a string to generate all diagrams in a single directory relative to the
    docusaurus project root.

    const pluginOptions = {
      // ...
      outputDir: 'diagrams', // Generate all diagrams in a single directory. E.g. "diagrams".
    }

docusaurus-plugin-structurizr@0.4.1

04 Feb 14:58
13c9ee0
Compare
Choose a tag to compare

Patch Changes

docusaurus-plugin-structurizr@0.4.0

04 Feb 14:43
4d4f3ac
Compare
Choose a tag to compare

Minor Changes

  • #76
    c7f4514
    Thanks @TimKolberger! - Added the option property
    ignorePatterns of type string[] to ignore files and directories from being processed by the
    plugin.

    It defaults to ['/**/include.*.dsl'] to ignore include files from being processed.

docusaurus-plugin-structurizr@0.3.0

11 Jan 20:13
02f9b48
Compare
Choose a tag to compare

Minor Changes

  • #26
    107eaed
    Thanks @renovate! - Add support for docusaurus v3.1 by moving
    @docusaurus/utils-validation to peer dependencies.

docusaurus-plugin-structurizr@0.2.0

21 Dec 20:03
41c5afa
Compare
Choose a tag to compare

Minor Changes

docusaurus-plugin-structurizr@0.1.1

Patch Changes

  • d7ab574
    Thanks @TimKolberger! - Fixed an issue where the plugin had a
    too strict validation for the format option. Now you can use any string as format option, see
    https://docs.structurizr.com/cli/export for more information.

    The TypeScript type for pluginOptions.format was updated to:

    type Format =
      | 'mermaid'
      | 'plantuml'
      | 'plantuml/structurizr'
      | 'plantuml/c4plantuml'
      | 'dot'
      | 'd2'
      | 'json'
      | 'ilograph'
      | 'websequencediagrams'
      | (string & {}) // accept any string

docusaurus-plugin-structurizr@0.1.0

Minor Changes