File tree Expand file tree Collapse file tree 3 files changed +3
-1
lines changed
src/lib/models/reflections Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 12
12
- Fixed relative link detection for markdown links containing code in their label, #2606 .
13
13
- Fixed an issue with packages mode where TypeDoc would use (much) more memory than required, #2607 .
14
14
- TypeDoc will no longer crash when asked to render highlighted code for an unsupported language, #2609 .
15
+ - Fixed an issue where relatively-linked files would not be copied to the output directory in packages mode.
15
16
- ` .jsonc ` configuration files are now properly read as JSONC, rather than being passed to ` require ` .
16
17
17
18
### Thanks!
Original file line number Diff line number Diff line change @@ -318,6 +318,7 @@ export class DeclarationReflection extends ContainerReflection {
318
318
if ( obj . variant === "project" ) {
319
319
this . kind = ReflectionKind . Module ;
320
320
this . packageVersion = obj . packageVersion ;
321
+ this . project . files . fromObject ( de , obj . files || { } ) ;
321
322
322
323
de . defer ( ( ) => {
323
324
for ( const [ id , sid ] of Object . entries ( obj . symbolIdMap || { } ) ) {
Original file line number Diff line number Diff line change @@ -400,7 +400,7 @@ export class ProjectReflection extends ContainerReflection {
400
400
if ( obj . readme ) {
401
401
this . readme = Comment . deserializeDisplayParts ( de , obj . readme ) ;
402
402
}
403
- this . files . fromObject ( de , obj . files ) ;
403
+ this . files . fromObject ( de , obj . files || { } ) ;
404
404
405
405
de . defer ( ( ) => {
406
406
// Unnecessary conditional in release
You can’t perform that action at this time.
0 commit comments