Skip to content

Commit 811af53

Browse files
committedNov 10, 2024
Some plugins only need to run in root
1 parent 98318d7 commit 811af53

File tree

8 files changed

+20
-0
lines changed

8 files changed

+20
-0
lines changed
 

‎packages/knip/src/WorkspaceWorker.ts

+1
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ export class WorkspaceWorker {
122122

123123
for (const [pluginName, plugin] of PluginEntries) {
124124
if (this.config[pluginName] === false) continue;
125+
if (this.cwd !== this.dir && plugin.isRootOnly) continue;
125126
if (this.config[pluginName]) {
126127
this.enabledPluginsMap[pluginName] = true;
127128
continue;

‎packages/knip/src/plugins/changesets/index.ts

+3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ const enablers = ['@changesets/cli'];
1111

1212
const isEnabled: IsPluginEnabled = ({ dependencies }) => hasDependency(dependencies, enablers);
1313

14+
const isRootOnly = true;
15+
1416
const config = ['.changeset/config.json'];
1517

1618
const resolveConfig: ResolveConfig<ChangesetsConfig> = config => {
@@ -27,6 +29,7 @@ export default {
2729
title,
2830
enablers,
2931
isEnabled,
32+
isRootOnly,
3033
config,
3134
resolveConfig,
3235
} satisfies Plugin;

‎packages/knip/src/plugins/commitizen/index.ts

+3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ const enablers = ['commitizen'];
1111

1212
const isEnabled: IsPluginEnabled = ({ dependencies }) => hasDependency(dependencies, enablers);
1313

14+
const isRootOnly = true;
15+
1416
const packageJsonPath = 'config.commitizen';
1517

1618
const config = ['.czrc', '.cz.json', 'package.json'];
@@ -23,6 +25,7 @@ export default {
2325
title,
2426
enablers,
2527
isEnabled,
28+
isRootOnly,
2629
packageJsonPath,
2730
config,
2831
resolveConfig,

‎packages/knip/src/plugins/github-actions/index.ts

+3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ const enablers = 'This plugin is enabled when a `.yml` or `.yaml` file is found
1313
const isEnabled: IsPluginEnabled = async ({ cwd }) =>
1414
Boolean(await _firstGlob({ cwd, patterns: ['.github/workflows/*.{yml,yaml}'] }));
1515

16+
const isRootOnly = true;
17+
1618
const config = ['.github/workflows/*.{yml,yaml}', '.github/**/action.{yml,yaml}'];
1719

1820
const isString = (value: unknown): value is string => typeof value === 'string';
@@ -73,6 +75,7 @@ export default {
7375
title,
7476
enablers,
7577
isEnabled,
78+
isRootOnly,
7679
config,
7780
resolveConfig,
7881
} satisfies Plugin;

‎packages/knip/src/plugins/husky/index.ts

+3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ const enablers = ['husky'];
1111

1212
const isEnabled: IsPluginEnabled = ({ dependencies }) => hasDependency(dependencies, enablers);
1313

14+
const isRootOnly = true;
15+
1416
// husky v9 registers hooks in .husky/_/, so need to set "false" here to get same lookup as in v8
1517
const gitHookPaths = getGitHookPaths('.husky', false);
1618

@@ -35,6 +37,7 @@ export default {
3537
title,
3638
enablers,
3739
isEnabled,
40+
isRootOnly,
3841
config,
3942
resolveConfig,
4043
} satisfies Plugin;

‎packages/knip/src/plugins/semantic-release/index.ts

+3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ const enablers = ['semantic-release'];
1212

1313
const isEnabled: IsPluginEnabled = ({ dependencies }) => hasDependency(dependencies, enablers);
1414

15+
const isRootOnly = true;
16+
1517
const packageJsonPath = 'release';
1618

1719
const config = ['package.json', ...toCosmiconfig('release')];
@@ -25,6 +27,7 @@ export default {
2527
title,
2628
enablers,
2729
isEnabled,
30+
isRootOnly,
2831
packageJsonPath,
2932
config,
3033
resolveConfig,

‎packages/knip/src/plugins/travis/index.ts

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ const enablers = 'This plugin is enabled when a `.travis.yml` file is found in t
99

1010
const isEnabled: IsPluginEnabled = async ({ cwd }) => (await _glob({ cwd, patterns: ['.travis.yml'] })).length > 0;
1111

12+
const isRootOnly = true;
13+
1214
const config = ['.travis.yml'];
1315

1416
const resolveConfig: ResolveConfig = async (config, options) => {
@@ -27,6 +29,7 @@ export default {
2729
title,
2830
enablers,
2931
isEnabled,
32+
isRootOnly,
3033
config,
3134
resolveConfig,
3235
} satisfies Plugin;

‎packages/knip/src/types/config.ts

+1
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ export interface Plugin {
128128
packageJsonPath?: string | ((manifest: PackageJson) => string);
129129
enablers?: IgnorePatterns | string;
130130
isEnabled?: IsPluginEnabled;
131+
isRootOnly?: boolean;
131132
config?: string[];
132133
entry?: string[];
133134
production?: string[];

0 commit comments

Comments
 (0)
Please sign in to comment.