Skip to content

v9.3.5

Latest
Compare
Choose a tag to compare
@75lb 75lb released this 17 Jul 17:26

Regression fix since v9.3.4

Previously, you could manually render files in a specific order. For example, in the output this code would render docs for two.js before one.js.

const output = await jsdocApi.explain({ files: ['src/two.js', 'src/one.js'] })

This behaviour was broken in jsdoc-api v9.0.0 - instead, it first sorted the files into alphabetical order, thus rendering one.js before two.js.

Jsdoc-api v9.3.5 fixes that regression - previous behaviour restored.