Skip to content

Commit de6682b

Browse files
committedDec 10, 2024
Stop using package.json as fallback containingFilePath
1 parent 8658378 commit de6682b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎packages/knip/src/WorkspaceWorker.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ export class WorkspaceWorker {
352352
}
353353

354354
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);
356356

357357
if (hasResolve) {
358358
const dependencies = (await plugin.resolve?.(options)) ?? [];

‎packages/knip/src/util/input.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,4 @@ export const toDeferResolveEntry = (specifier: string): Input => ({ type: 'defer
7474
export const isDeferResolveEntry = (input: Input) => input.type === 'deferResolveEntry';
7575

7676
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)})` : ''}`;

0 commit comments

Comments
 (0)
Please sign in to comment.