File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -352,7 +352,7 @@ export class WorkspaceWorker {
352
352
}
353
353
354
354
const finalEntryPaths = getFinalEntryPaths ( plugin , options , configEntryPaths ) ;
355
- for ( const id of finalEntryPaths ) addInput ( id , id . containingFilePath ?? containingFilePath ) ;
355
+ for ( const id of finalEntryPaths ) addInput ( id , id . containingFilePath ) ;
356
356
357
357
if ( hasResolve ) {
358
358
const dependencies = ( await plugin . resolve ?.( options ) ) ?? [ ] ;
Original file line number Diff line number Diff line change @@ -74,4 +74,4 @@ export const toDeferResolveEntry = (specifier: string): Input => ({ type: 'defer
74
74
export const isDeferResolveEntry = ( input : Input ) => input . type === 'deferResolveEntry' ;
75
75
76
76
export const toDebugString = ( input : Input ) =>
77
- `${ input . type } :${ input . specifier } ${ input . containingFilePath ? `(${ toRelative ( input . containingFilePath ) } )` : '' } ` ;
77
+ `${ input . type } :${ input . specifier } ${ input . containingFilePath ? ` (${ toRelative ( input . containingFilePath ) } )` : '' } ` ;
You can’t perform that action at this time.
0 commit comments