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.