knip 5.58.0 → 5.58.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ConfigurationChief.js +3 -2
- package/dist/cli.js +2 -2
- package/dist/graph/analyze.d.ts +0 -2
- package/dist/graph/analyze.js +7 -12
- package/dist/index.js +1 -3
- package/dist/plugins/index.d.ts +1 -1
- package/dist/plugins/sentry/index.d.ts +1 -1
- package/dist/plugins/sentry/index.js +2 -2
- package/dist/reporters/util.d.ts +1 -1
- package/dist/reporters/util.js +1 -1
- package/dist/types/cli.d.ts +0 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
|
@@ -307,10 +307,11 @@ export class ConfigurationChief {
|
|
|
307
307
|
getNegatedWorkspacePatterns(name) {
|
|
308
308
|
const descendentWorkspaces = this.getDescendentWorkspaces(name);
|
|
309
309
|
const matchName = new RegExp(`^${name}/`);
|
|
310
|
-
const ignoredWorkspaces = this.getIgnoredWorkspacesFor(name)
|
|
310
|
+
const ignoredWorkspaces = this.getIgnoredWorkspacesFor(name);
|
|
311
|
+
const endMatch = /\/\*{1,2}$|\/$|$/;
|
|
311
312
|
return [...ignoredWorkspaces, ...descendentWorkspaces]
|
|
312
313
|
.map(workspaceName => workspaceName.replace(matchName, ''))
|
|
313
|
-
.map(workspaceName => `!${workspaceName}`);
|
|
314
|
+
.map(workspaceName => `!${workspaceName.replace(endMatch, '/**')}`);
|
|
314
315
|
}
|
|
315
316
|
getConfigKeyForWorkspace(workspaceName) {
|
|
316
317
|
return this.getConfiguredWorkspaceKeys()
|
package/dist/cli.js
CHANGED
|
@@ -10,7 +10,7 @@ import { splitTags } from './util/tag.js';
|
|
|
10
10
|
import { isTrace } from './util/trace.js';
|
|
11
11
|
import { version } from './version.js';
|
|
12
12
|
const defaultCacheLocation = join(cwd, 'node_modules', '.cache', 'knip');
|
|
13
|
-
const { 'allow-remove-files': isRemoveFiles = false, cache: isCache = false, 'cache-location': cacheLocation = defaultCacheLocation, debug: isDebug = false, dependencies: isDependenciesShorthand = false, exclude: excludedIssueTypes = [], 'experimental-tags': experimentalTags = [], exports: isExportsShorthand = false, files: isFilesShorthand = false, fix: isFix = false, format: isFormat = false, 'fix-type': fixTypes = [], help: isHelp, include: includedIssueTypes = [], 'include-entry-exports': isIncludeEntryExports = false, 'include-libs': isIncludeLibs = false, 'isolate-workspaces': isIsolateWorkspaces = false, 'max-issues': maxIssues = '0', 'memory-realtime': memoryRealtime = false, 'no-config-hints':
|
|
13
|
+
const { 'allow-remove-files': isRemoveFiles = false, cache: isCache = false, 'cache-location': cacheLocation = defaultCacheLocation, debug: isDebug = false, dependencies: isDependenciesShorthand = false, exclude: excludedIssueTypes = [], 'experimental-tags': experimentalTags = [], exports: isExportsShorthand = false, files: isFilesShorthand = false, fix: isFix = false, format: isFormat = false, 'fix-type': fixTypes = [], help: isHelp, include: includedIssueTypes = [], 'include-entry-exports': isIncludeEntryExports = false, 'include-libs': isIncludeLibs = false, 'isolate-workspaces': isIsolateWorkspaces = false, 'max-issues': maxIssues = '0', 'memory-realtime': memoryRealtime = false, 'no-config-hints': isNoConfigHints = false, 'no-exit-code': noExitCode = false, 'no-gitignore': isNoGitIgnore = false, 'no-progress': isNoProgress = isDebug || isTrace || memoryRealtime, preprocessor = [], 'preprocessor-options': preprocessorOptions = '', production: isProduction = false, reporter = ['symbols'], 'reporter-options': reporterOptions = '', strict: isStrict = false, tags = [], 'treat-config-hints-as-errors': treatConfigHintsAsErrors = false, tsConfig, version: isVersion, watch: isWatch = false, workspace: rawWorkspaceArg, } = parsedArgValues;
|
|
14
14
|
if (isHelp) {
|
|
15
15
|
console.log(helpText);
|
|
16
16
|
process.exit(0);
|
|
@@ -37,7 +37,6 @@ const run = async () => {
|
|
|
37
37
|
isFilesShorthand,
|
|
38
38
|
isFix: isFix || fixTypes.length > 0,
|
|
39
39
|
isFormat,
|
|
40
|
-
isDisableConfigHints,
|
|
41
40
|
isIncludeEntryExports,
|
|
42
41
|
isIncludeLibs,
|
|
43
42
|
isIsolateWorkspaces,
|
|
@@ -50,6 +49,7 @@ const run = async () => {
|
|
|
50
49
|
tsConfigFile: tsConfig,
|
|
51
50
|
workspace,
|
|
52
51
|
});
|
|
52
|
+
const isDisableConfigHints = isNoConfigHints || isProduction || Boolean(workspace);
|
|
53
53
|
if (isWatch || isTrace)
|
|
54
54
|
return;
|
|
55
55
|
const initialData = {
|
package/dist/graph/analyze.d.ts
CHANGED
|
@@ -17,14 +17,12 @@ interface AnalyzeOptions {
|
|
|
17
17
|
fixer: IssueFixer;
|
|
18
18
|
graph: ModuleGraph;
|
|
19
19
|
isFix: boolean;
|
|
20
|
-
isDisableConfigHints: boolean;
|
|
21
20
|
isIncludeLibs: boolean;
|
|
22
21
|
isProduction: boolean;
|
|
23
22
|
report: Report;
|
|
24
23
|
streamer: ConsoleStreamer;
|
|
25
24
|
tags: Tags;
|
|
26
25
|
unreferencedFiles: Set<string>;
|
|
27
|
-
workspace?: string;
|
|
28
26
|
}
|
|
29
27
|
export declare const analyze: (options: AnalyzeOptions) => Promise<() => Promise<void>>;
|
|
30
28
|
export {};
|
package/dist/graph/analyze.js
CHANGED
|
@@ -5,13 +5,12 @@ import { findMatch } from '../util/regex.js';
|
|
|
5
5
|
import { getShouldIgnoreHandler, getShouldIgnoreTagHandler } from '../util/tag.js';
|
|
6
6
|
import { createAndPrintTrace, printTrace } from '../util/trace.js';
|
|
7
7
|
export const analyze = async (options) => {
|
|
8
|
-
const { analyzedFiles, chief, collector, deputy, entryPaths, factory, fixer, graph, isFix,
|
|
8
|
+
const { analyzedFiles, chief, collector, deputy, entryPaths, factory, fixer, graph, isFix, isIncludeLibs, isProduction, report, streamer, tags, unreferencedFiles, } = options;
|
|
9
9
|
const isReportDependencies = report.dependencies || report.unlisted || report.unresolved;
|
|
10
10
|
const isReportValues = report.exports || report.nsExports || report.classMembers;
|
|
11
11
|
const isReportTypes = report.types || report.nsTypes || report.enumMembers;
|
|
12
12
|
const isReportClassMembers = report.classMembers;
|
|
13
13
|
const isSkipLibs = !(isIncludeLibs || isReportClassMembers);
|
|
14
|
-
const isShowConfigHints = !workspace && !isProduction && !isDisableConfigHints;
|
|
15
14
|
const shouldIgnore = getShouldIgnoreHandler(isProduction);
|
|
16
15
|
const shouldIgnoreTags = getShouldIgnoreTagHandler(tags);
|
|
17
16
|
const isIdentifierReferenced = getIsIdentifierReferencedHandler(graph, entryPaths);
|
|
@@ -212,17 +211,13 @@ export const analyze = async (options) => {
|
|
|
212
211
|
for (const issue of optionalPeerDependencyIssues)
|
|
213
212
|
collector.addIssue(issue);
|
|
214
213
|
deputy.removeIgnoredIssues(collector.getIssues());
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
collector.addConfigurationHint(hint);
|
|
219
|
-
}
|
|
214
|
+
const configurationHints = deputy.getConfigurationHints();
|
|
215
|
+
for (const hint of configurationHints)
|
|
216
|
+
collector.addConfigurationHint(hint);
|
|
220
217
|
}
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
collector.addConfigurationHint({ type: 'ignoreWorkspaces', identifier });
|
|
225
|
-
}
|
|
218
|
+
const unusedIgnoredWorkspaces = chief.getUnusedIgnoredWorkspaces();
|
|
219
|
+
for (const identifier of unusedIgnoredWorkspaces) {
|
|
220
|
+
collector.addConfigurationHint({ type: 'ignoreWorkspaces', identifier });
|
|
226
221
|
}
|
|
227
222
|
};
|
|
228
223
|
await analyzeGraph();
|
package/dist/index.js
CHANGED
|
@@ -12,7 +12,7 @@ import { debugLogArray, debugLogObject } from './util/debug.js';
|
|
|
12
12
|
import { getGitIgnoredHandler } from './util/glob-core.js';
|
|
13
13
|
import { getWatchHandler } from './util/watch.js';
|
|
14
14
|
export const main = async (unresolvedConfiguration) => {
|
|
15
|
-
const { cacheLocation, cwd, excludedIssueTypes, fixTypes, gitignore, includedIssueTypes, isCache, isDebug, isDependenciesShorthand, isExportsShorthand, isFilesShorthand, isFix, isFormat,
|
|
15
|
+
const { cacheLocation, cwd, excludedIssueTypes, fixTypes, gitignore, includedIssueTypes, isCache, isDebug, isDependenciesShorthand, isExportsShorthand, isFilesShorthand, isFix, isFormat, isIncludeEntryExports, isIncludeLibs, isIsolateWorkspaces, isProduction, isRemoveFiles, isShowProgress, isStrict, isWatch, tags, tsConfigFile, workspace, } = unresolvedConfiguration;
|
|
16
16
|
debugLogObject('*', 'Unresolved configuration (from CLI arguments)', unresolvedConfiguration);
|
|
17
17
|
const chief = new ConfigurationChief({ cwd, isProduction, isStrict, isIncludeEntryExports, workspace });
|
|
18
18
|
const deputy = new DependencyDeputy({ isProduction, isStrict });
|
|
@@ -73,14 +73,12 @@ export const main = async (unresolvedConfiguration) => {
|
|
|
73
73
|
fixer,
|
|
74
74
|
graph,
|
|
75
75
|
isFix,
|
|
76
|
-
isDisableConfigHints,
|
|
77
76
|
isIncludeLibs,
|
|
78
77
|
isProduction,
|
|
79
78
|
report,
|
|
80
79
|
streamer,
|
|
81
80
|
tags: finalTags,
|
|
82
81
|
unreferencedFiles,
|
|
83
|
-
workspace,
|
|
84
82
|
});
|
|
85
83
|
const { issues, counters, tagHints, configurationHints } = collector.getIssues();
|
|
86
84
|
if (isWatch) {
|
package/dist/plugins/index.d.ts
CHANGED
|
@@ -2,10 +2,10 @@ import { hasDependency } from '../../util/plugin.js';
|
|
|
2
2
|
const title = 'Sentry';
|
|
3
3
|
const enablers = [/^@sentry\//];
|
|
4
4
|
const isEnabled = ({ dependencies }) => hasDependency(dependencies, enablers);
|
|
5
|
-
const
|
|
5
|
+
const production = ['sentry.{client,server,edge}.config.{js,ts}'];
|
|
6
6
|
export default {
|
|
7
7
|
title,
|
|
8
8
|
enablers,
|
|
9
9
|
isEnabled,
|
|
10
|
-
|
|
10
|
+
production,
|
|
11
11
|
};
|
package/dist/reporters/util.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ export declare const plain: (text: string) => string;
|
|
|
5
5
|
export declare const dim: import("picocolors/types.js").Formatter;
|
|
6
6
|
export declare const getIssueTypeTitle: (reportType: keyof typeof ISSUE_TYPE_TITLE) => string;
|
|
7
7
|
export declare const getColoredTitle: (title: string, count: number) => string;
|
|
8
|
-
export declare const getDimmedTitle: (title: string) => string;
|
|
8
|
+
export declare const getDimmedTitle: (title: string, count: number) => string;
|
|
9
9
|
type LogIssueLine = {
|
|
10
10
|
owner?: string;
|
|
11
11
|
filePath: string;
|
package/dist/reporters/util.js
CHANGED
|
@@ -8,7 +8,7 @@ export const dim = picocolors.gray;
|
|
|
8
8
|
const bright = picocolors.whiteBright;
|
|
9
9
|
export const getIssueTypeTitle = (reportType) => ISSUE_TYPE_TITLE[reportType];
|
|
10
10
|
export const getColoredTitle = (title, count) => `${picocolors.yellowBright(picocolors.underline(title))} (${count})`;
|
|
11
|
-
export const getDimmedTitle = (title) => `${picocolors.yellow(picocolors.underline(
|
|
11
|
+
export const getDimmedTitle = (title, count) => `${picocolors.yellow(`${picocolors.underline(title)} (${count})`)}`;
|
|
12
12
|
export const getIssueLine = ({ owner, filePath, symbols, parentSymbol, severity }) => {
|
|
13
13
|
const symbol = symbols ? `: ${symbols.map(s => s.symbol).join(', ')}` : '';
|
|
14
14
|
const parent = parentSymbol ? ` (${parentSymbol})` : '';
|
package/dist/types/cli.d.ts
CHANGED
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "5.58.
|
|
1
|
+
export declare const version = "5.58.1";
|
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '5.58.
|
|
1
|
+
export const version = '5.58.1';
|