Skip to content

v0.0.3

Compare
Choose a tag to compare
@peterpeterparker peterpeterparker released this 02 Jul 11:55
· 57 commits to main since this release

Breaking Changes

  • provide the links to the source code in the json output as well (#11)

Fix

  • use relative path to generate links (#10)

Because this release aim to provide the links to the source code in the outputed JSON file as well, the configuration has to be change.
i.e. the repo URL is not a MarkdownOptions anymore but, a BuildOptions

generateDocumentation({
  inputFiles: utilsInputFiles,
  outputFile: './packages/utils/YOLO.md',
  buildOptions: {
    explore: true,
    repo: {
      url: 'https://github.com/peterpeterparker/tsdoc-markdown'
    }
  }
});