File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 12
12
### Bug Fixes
13
13
14
14
- Fixed schema URL for TSDoc preventing the use of ` typedoc/tsdoc.json ` in TSDoc extends, #2015 .
15
+ - Improved detection of package names in repositories using pnpm, #2017 .
15
16
- Fixed missing JSDoc style ` @typedef ` comments for properties, #2020 .
16
17
17
18
### Thanks!
18
19
20
+ - @bodil
19
21
- @nazarhussain
20
22
21
23
## v0.23.9 (2022-07-24)
Original file line number Diff line number Diff line change @@ -847,7 +847,7 @@ export class ReferenceType extends Type {
847
847
. fileName . replace ( / \\ / g, "/" ) ;
848
848
if ( ! symbolPath ) return ref ;
849
849
850
- let startIndex = symbolPath . indexOf ( "node_modules/" ) ;
850
+ let startIndex = symbolPath . lastIndexOf ( "node_modules/" ) ;
851
851
if ( startIndex === - 1 ) return ref ;
852
852
startIndex += "node_modules/" . length ;
853
853
let stopIndex = symbolPath . indexOf ( "/" , startIndex ) ;
You can’t perform that action at this time.
0 commit comments