Skip to content

Commit 8c0289f

Browse files
committedNov 6, 2024
No need to add .json files as entry files
1 parent a4a9882 commit 8c0289f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎packages/knip/src/WorkspaceWorker.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import { debugLogArray, debugLogObject } from './util/debug.js';
1616
import { _glob, hasNoProductionSuffix, hasProductionSuffix, negate, prependDirToPattern } from './util/glob.js';
1717
import { type ConfigInput, type Input, isConfigPattern, toDebugString, toEntry } from './util/input.js';
1818
import { getKeysByValue } from './util/object.js';
19-
import { basename, dirname, join } from './util/path.js';
19+
import { basename, dirname, extname, join } from './util/path.js';
2020
import { getFinalEntryPaths, loadConfigForPlugin } from './util/plugin.js';
2121

2222
type WorkspaceManagerOptions = {
@@ -275,7 +275,8 @@ export class WorkspaceWorker {
275275
if (configFilePath) {
276276
if (!configFiles.has(pluginName)) configFiles.set(pluginName, new Set());
277277
configFiles.get(pluginName)?.add(configFilePath);
278-
addInput(toEntry(dependency.specifier), dependency.containingFilePath);
278+
if (extname(dependency.specifier) !== '.json')
279+
addInput(toEntry(dependency.specifier), dependency.containingFilePath);
279280
}
280281
};
281282

0 commit comments

Comments
 (0)
Please sign in to comment.