v9.1.2
Regression fix since v9.1.1
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 jsdoc2md.render({ files: ['src/two.js', 'src/one.js'] })This behaviour was broken by the jsdoc-api v9.0.0 release - instead, that version first sorted the files into alphabetical order, thus rendering one.js before two.js.
Jsdoc-api v9.3.5 (used internally by jsdoc2md) fixes that regression - previous behaviour restored.