-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathknip.ts
317 lines (288 loc) · 9.54 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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
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;
}
// function ignoreWebpackConfigsLoaders({ ignoreMiniCssExtractPlugin = false }: { ignoreMiniCssExtractPlugin?: boolean } = {}): KnipTransformer {
// return ({ ignoreDependencies, ...config }) => ({
// ...config,
// ignoreDependencies: [
// ...(ignoreDependencies as string[] ?? []),
// "@svgr/webpack",
// "swc-loader",
// "css-loader",
// "postcss-loader",
// "style-loader",
// !ignoreMiniCssExtractPlugin && "mini-css-extract-plugin"
// ].filter(Boolean) as string[]
// });
// }
// const ignoreBrowserslist: KnipTransformer = ({ ignoreDependencies, ...config }) => {
// return {
// ...config,
// ignoreDependencies: [
// ...(ignoreDependencies as string[] ?? []),
// // Browserlist isn't supported by plugins.
// "@workleap/browserslist-config"
// ]
// };
// };
// 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 configurePackage: KnipTransformer = config => {
return {
...config,
eslint: true,
rsbuild: {
config: ["rsbuild.*.ts"]
}
};
};
// const configureSampleHost: KnipTransformer = ({ entry, ignoreDependencies, ...config }) => {
// return {
// ...config,
// entry: [
// ...(entry as string[] ?? []),
// "src/index.ts"
// ],
// ignoreDependencies: [
// ...(ignoreDependencies as string[] ?? []),
// // Browserlist isn't supported by plugins.
// "@workleap/browserslist-config",
// // It's an optional dependency of @workleap/webpack-configs.
// "webpack-dev-server"
// ],
// eslint: true,
// webpack: {
// config: ["webpack.*.js"]
// }
// };
// };
// const configureSampleLocalModule: KnipTransformer = ({ entry, ignoreDependencies, ...config }) => {
// return {
// ...config,
// entry: [
// ...(entry as string[] ?? []),
// "src/register.tsx",
// // Isolated environment.
// "src/dev/index.tsx"
// ],
// ignoreDependencies: [
// ...(ignoreDependencies as string[] ?? []),
// // It's an optional dependency of @workleap/webpack-configs.
// "webpack-dev-server"
// ],
// eslint: true,
// tsup: {
// config: ["tsup.*.ts"]
// },
// webpack: {
// config: ["webpack.config.js", "webpack.*.js"]
// }
// };
// };
// const configureSampleRemoteModule: KnipTransformer = ({ entry, ignoreDependencies, ...config }) => {
// return {
// ...config,
// entry: [
// ...(entry as string[] ?? []),
// "src/register.tsx",
// // Isolated environment.
// "src/dev/index.tsx"
// ],
// ignoreDependencies: [
// ...(ignoreDependencies as string[] ?? []),
// // It's an optional dependency of @workleap/webpack-configs.
// "webpack-dev-server"
// ],
// eslint: true,
// webpack: {
// config: ["webpack.*.js"]
// }
// };
// };
// const configureSampleLibrary: KnipTransformer = ({ entry, ...config }) => {
// return {
// ...config,
// entry: [
// ...(entry as string[] ?? []),
// "src/index.ts"
// ],
// eslint: true,
// tsup: {
// config: ["tsup.*.ts"]
// }
// };
// };
// const configureTemplateHost: KnipTransformer = ({ entry, ignoreDependencies, ...config }) => {
// return {
// ...config,
// entry: [
// ...(entry as string[] ?? []),
// "src/index.ts"
// ],
// ignoreDependencies: [
// ...(ignoreDependencies as string[] ?? []),
// // Browserlist isn't supported by plugins.
// "@workleap/browserslist-config"
// ],
// eslint: true,
// webpack: {
// config: ["webpack.*.js"]
// }
// };
// };
// const configureTemplateLocalModule: KnipTransformer = ({ entry, ...config }) => {
// return {
// ...config,
// entry: [
// ...(entry as string[] ?? []),
// "src/register.tsx"
// ],
// eslint: true,
// tsup: {
// config: ["tsup.*.ts"]
// }
// };
// };
// const configureTemplateRemoteModule: KnipTransformer = ({ entry, ...config }) => {
// return {
// ...config,
// entry: [
// ...(entry as string[] ?? []),
// "src/register.tsx"
// ],
// eslint: true,
// webpack: {
// config: ["webpack.*.js"]
// }
// };
// };
const rootConfig: KnipWorkspaceConfig = defineWorkspace({
// ignoreBinaries: [
// // This binaries is called "build-endpoints-isolated" for the samples.
// "build-isolated"
// ],
ignoreDependencies: [
// Azure Devops pipeline aren't supported by plugins.
// "netlify-cli",
// Installed once for all the workspace's projects
"ts-node"
]
});
const packagesConfig: KnipWorkspaceConfig = defineWorkspace({}, [
configurePackage
]);
const mswConfig: KnipWorkspaceConfig = defineWorkspace({
ignoreDependencies: [
"msw"
]
}, [
configurePackage
]);
// const sampleHost: KnipWorkspaceConfig = defineWorkspace({}, [
// configureSampleHost,
// ignoreWebpackConfigsLoaders(),
// ignoreBrowserslist,
// configureMsw
// ]);
// const sampleLocalModuleConfig: KnipWorkspaceConfig = defineWorkspace({}, [
// configureSampleLocalModule,
// ignoreWebpackConfigsLoaders(),
// ignoreBrowserslist,
// configureMsw
// ]);
// const sampleRemoteModuleConfig: KnipWorkspaceConfig = defineWorkspace({}, [
// configureSampleRemoteModule,
// ignoreWebpackConfigsLoaders(),
// ignoreBrowserslist,
// configureMsw
// ]);
// const sampleLibraryConfig: KnipWorkspaceConfig = defineWorkspace({}, [
// configureSampleLibrary,
// configureMsw
// ]);
// const sampleBasicLocalModuleConfig: KnipWorkspaceConfig = defineWorkspace({
// ignoreDependencies: [
// // It seems like because it's used with a non-standard nodemon filename, knip can't detect the usage
// // of the webpack CLI.
// "webpack-cli"
// ]
// }, [
// configureSampleLocalModule,
// ignoreWebpackConfigsLoaders({ ignoreMiniCssExtractPlugin: true }),
// ignoreBrowserslist,
// configureMsw
// ]);
// const templateHost: KnipWorkspaceConfig = defineWorkspace({}, [
// configureTemplateHost,
// ignoreWebpackConfigsLoaders(),
// ignoreBrowserslist
// ]);
// const templateLocalModuleConfig: KnipWorkspaceConfig = defineWorkspace({}, [
// configureTemplateLocalModule
// ]);
// const templateRemoteModuleConfig: KnipWorkspaceConfig = defineWorkspace({}, [
// configureTemplateRemoteModule,
// ignoreWebpackConfigsLoaders(),
// ignoreBrowserslist
// ]);
const config: KnipConfig = {
workspaces: {
".": rootConfig,
"packages/*": packagesConfig,
"packages/msw": mswConfig
// "samples/basic/host": sampleHost,
// "samples/basic/local-module": sampleBasicLocalModuleConfig,
// "samples/basic/another-remote-module": sampleRemoteModuleConfig,
// "samples/basic/remote-module": sampleRemoteModuleConfig,
// "samples/basic/shared": sampleLibraryConfig,
// "samples/basic/shell": sampleLibraryConfig,
// "samples/endpoints/host": sampleHost,
// "samples/endpoints/local-module": sampleLocalModuleConfig,
// "samples/endpoints/remote-module": sampleRemoteModuleConfig,
// "samples/endpoints/shared": sampleLibraryConfig,
// "samples/endpoints/shell": sampleLibraryConfig,
// "samples/endpoints/i18next": sampleLibraryConfig,
// "samples/endpoints/layouts": sampleLibraryConfig,
// "templates/getting-started/apps/host": templateHost,
// "templates/getting-started/apps/local-module": templateLocalModuleConfig,
// "templates/getting-started/apps/remote-module": templateRemoteModuleConfig
},
// Temporary ignoring
ignoreWorkspaces: [
"samples/**",
"templates/**"
],
exclude: [
// It cause issues with config like Jest "projects".
"unresolved"
],
ignoreExportsUsedInFile: true
};
export default config;