krisztianb / typedoc-plugin-merge-modules

Plugin for TypeDoc that merges the content of modules
ISC License
21 stars 4 forks source link

Allow to use TypeDoc 0.24.x #13

Closed erymski closed 1 year ago

erymski commented 1 year ago

Current peer dependency version disallows to use the plugin with TypeDoc release 0.24+ with plain npm i:

>  npm i

npm ERR! code ERESOLVE
npm ERR! ERESOLVE could not resolve
npm ERR!
npm ERR! While resolving: typedoc-plugin-merge-modules@4.0.1
npm ERR! Found: typedoc@0.24.4
npm ERR! node_modules/typedoc
npm ERR!   dev typedoc@"0.24.4" from the root project
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer typedoc@"0.23.x" from typedoc-plugin-merge-modules@4.0.1
npm ERR! node_modules/typedoc-plugin-merge-modules
npm ERR!   dev typedoc-plugin-merge-modules@"^4.0.1" from the root project

It's still possible to use the current plugin version with npm i --force or npm i --legacy-peer-deps, but it's not that convenient.

Current plugin version still works as expected (on my project) with TypeDoc 0.24.4, so this PR is about extending allowed versions of TypeDoc.

krisztianb commented 1 year ago

Hi. Thanks. I was actually testing this the last week but didn't get to releasing a new version. Will do so soon.

krisztianb commented 1 year ago

Released as 4.1.0 🍾