-
Notifications
You must be signed in to change notification settings - Fork 2
/
knip.ts
186 lines (165 loc) · 4.69 KB
/
knip.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
import type { KnipConfig } from "knip";
type KnipWorkspaceConfig = NonNullable<KnipConfig["workspaces"]>[string];
type KnipTransformer = (config: KnipWorkspaceConfig) => KnipWorkspaceConfig;
function defineWorkspace({ ignore, ...config }: KnipWorkspaceConfig, transformers?: KnipTransformer[]): KnipWorkspaceConfig {
let transformedConfig: KnipWorkspaceConfig = {
...config,
ignore: [
...(ignore as string[] ?? []),
"node_modules/**",
"dist/**"
]
};
if (transformers) {
transformedConfig = transformers.reduce((acc, transformer) => transformer(acc), transformedConfig);
}
return transformedConfig;
}
const ignoreBrowserslist: KnipTransformer = ({ ignoreDependencies, ...config }) => {
return {
...config,
ignoreDependencies: [
...(ignoreDependencies as string[] ?? []),
// Browserlist isn't supported by plugins.
"@workleap/browserslist-config"
]
};
};
const configurePostcss: KnipTransformer = config => {
return {
...config,
postcss: {
config: ["postcss.config.ts"]
}
};
};
const configureMsw: KnipTransformer = ({ entry, ignore, ...config }) => {
return {
...config,
entry: [
...(entry as string[] ?? []),
"src/mocks/browser.ts",
"src/mocks/handlers.ts"
],
ignore: [
...(ignore as string[] ?? []),
// MSW isn't supported by plugins.
"public/mockServiceWorker.js"
]
};
};
const configureWebpack: KnipTransformer = ({ ignoreDependencies, ...config }) => {
return {
...config,
webpack: {
config: ["webpack.*.js"]
},
ignoreDependencies: [
...(ignoreDependencies as string[] ?? []),
"@svgr/webpack",
"swc-loader",
"css-loader",
"postcss-loader",
"style-loader",
"mini-css-extract-plugin"
].filter(Boolean) as string[]
};
};
const configureTsup: KnipTransformer = config => {
return {
...config,
tsup: {
config: ["tsup.*.ts"]
}
};
};
const configurePackage: KnipTransformer = config => {
return {
...config,
eslint: true
};
};
const configureSample: KnipTransformer = ({ entry, ...config }) => {
return {
...config,
entry: [
...(entry as string[] ?? []),
"src/index.ts",
"src/index.tsx"
],
eslint: true,
stylelint: true
};
};
const rootConfig = defineWorkspace({
ignoreDependencies: [
// Required for Stylelint (seems like a Knip bug)
"prettier",
// Installed once for all the workspace's projects
"ts-node"
]
});
const packagesConfig: KnipWorkspaceConfig = defineWorkspace({}, [
configurePackage,
configureTsup
]);
const swcConfig: KnipWorkspaceConfig = defineWorkspace({
ignoreDependencies: [
// Omitting the optional peer dependencies from the peerDependencies emits
// runtime errors like "[ERROR] Could not resolve "browserslist"".
"@swc/jest",
"browserslist"
]
}, [
configurePackage,
configureTsup
]);
const webpackConfig: KnipWorkspaceConfig = defineWorkspace({
ignoreDependencies: [
// Emits an referenced optionap peerDependencies warning but according to PNPM
// documentation, to specify a version constraint, the optional dependency must be define.
// See: https://pnpm.io/package_json#peerdependenciesmetaoptional.
"webpack-dev-server"
]
}, [
configurePackage,
configureTsup
]);
const sampleAppConfig = defineWorkspace({}, [
configureSample,
ignoreBrowserslist,
configurePostcss,
configureWebpack,
configureMsw
]);
const sampleComponentsConfig = defineWorkspace({}, [
configureSample,
configureTsup
]);
const sampleUtilsConfig = defineWorkspace({}, [
configureSample,
configureTsup
]);
const config: KnipConfig = {
workspaces: {
".": rootConfig,
"packages/*": packagesConfig,
"packages/swc-configs": swcConfig,
"packages/webpack-configs": webpackConfig,
"sample/app": sampleAppConfig,
"sample/components": sampleComponentsConfig,
"sample/utils": sampleUtilsConfig
},
ignoreWorkspaces: [
// Until it's migrated to ESLint 9.
"packages/eslint-plugin",
// Until it supports ESM.
"packages/stylelint-configs"
],
exclude: [
// It cause issues with config like Jest "projects".
"unresolved"
],
ignoreExportsUsedInFile: true
};
export default config;