-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdependency-cruiser.config.mjs
More file actions
338 lines (288 loc) · 10.7 KB
/
dependency-cruiser.config.mjs
File metadata and controls
338 lines (288 loc) · 10.7 KB
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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
#!/usr/bin/env node
/**
* Dependency Cruiser configuration for Prisma Next.
*
* It derives module groups from architecture.config.json and encodes the same-layer/
* downward-only semantics. Plane import constraints and cross-domain exceptions are
* defined declaratively in architecture.config.json rather than hardcoded here.
*/
import config from './architecture.config.json' with { type: 'json' };
const {
packages: packageConfigs,
layerOrder,
planeRules,
crossDomainExceptions,
crossDomainRules,
} = config;
const normalizeGlob = (glob) => {
const DOUBLE_WILDCARD = '__DOUBLE_WILDCARD__';
const SINGLE_WILDCARD = '__SINGLE_WILDCARD__';
const hasWildcard = glob.includes('*');
const lastPathSegment = glob.split('/').pop() ?? '';
const isFileLikePattern = !hasWildcard && lastPathSegment.includes('.');
let pattern = glob
.replace(/\*\*/g, DOUBLE_WILDCARD)
.replace(/\*/g, SINGLE_WILDCARD)
.replaceAll(DOUBLE_WILDCARD, '.*')
.replaceAll(SINGLE_WILDCARD, '[^/]*');
if (isFileLikePattern) {
return `^${pattern}$`;
}
if (!hasWildcard && !pattern.endsWith('/')) {
pattern += '/.*';
}
return `^${pattern}`;
};
const moduleGroupMap = new Map();
for (const pkgConfig of packageConfigs) {
const key = `${pkgConfig.domain}-${pkgConfig.layer}-${pkgConfig.plane}`;
if (!moduleGroupMap.has(key)) {
moduleGroupMap.set(key, {
key,
domain: pkgConfig.domain,
layer: pkgConfig.layer,
plane: pkgConfig.plane,
globs: [],
patterns: [],
});
}
const group = moduleGroupMap.get(key);
group.globs.push(pkgConfig.glob);
group.patterns.push(normalizeGlob(pkgConfig.glob));
}
const moduleGroups = Array.from(moduleGroupMap.values());
const getLayerIndex = (domain, layer) => {
const order = layerOrder[domain];
if (!order) return -1;
return order.indexOf(layer);
};
const describeGroup = (group) => `${group.domain}/${group.layer}/${group.plane}`;
const groupPattern = (group) => group.patterns.join('|');
const matchesGlobPattern = (group, pattern) => {
// Check if any of the group's globs match the exception pattern
// We check if the globs are identical or if one is a prefix of the other (with proper glob semantics)
return group.globs.some((glob) => {
// Exact match
if (glob === pattern) {
return true;
}
// Check if the group's glob matches the exception pattern by normalizing both and testing
// Normalize both patterns to regex and check if they would match the same files
const normalizedExceptionPattern = normalizeGlob(pattern);
const normalizedGroupPattern = normalizeGlob(glob);
// If the normalized patterns are identical, they match
if (normalizedExceptionPattern === normalizedGroupPattern) {
return true;
}
// Check if one pattern is a prefix of the other
const exceptionBase = pattern.replace(/\/\*\*$/, '').replace(/\*$/, '');
const groupBase = glob.replace(/\/\*\*$/, '').replace(/\*$/, '');
// Group matches exception if group's base path starts with exception's base path, or vice versa
if (groupBase.startsWith(exceptionBase) || exceptionBase.startsWith(groupBase)) {
return true;
}
return false;
});
};
const forbidden = [];
const pushRule = (name, comment, sourceGroup, targetGroup) => {
forbidden.push({
name,
comment,
severity: 'error',
from: { path: groupPattern(sourceGroup) },
to: { path: groupPattern(targetGroup) },
});
};
const createUpwardRules = () => {
for (const sourceGroup of moduleGroups) {
for (const targetGroup of moduleGroups) {
if (sourceGroup.domain !== targetGroup.domain) continue;
const sourceIndex = getLayerIndex(sourceGroup.domain, sourceGroup.layer);
const targetIndex = getLayerIndex(targetGroup.domain, targetGroup.layer);
if (sourceIndex === -1 || targetIndex === -1 || targetIndex <= sourceIndex) continue;
// SQL contract types are now in shared plane (sql/contract), so authoring can import from shared
// No exception needed - authoring imports from shared, not targets
pushRule(
`upward-${sourceGroup.key}-to-${targetGroup.layer}`,
`Upward import: ${describeGroup(sourceGroup)} cannot import from ${describeGroup(targetGroup)} (away from core)`,
sourceGroup,
targetGroup,
);
}
}
};
const createCrossDomainRules = () => {
if (!crossDomainRules) {
// Fallback to old behavior if crossDomainRules not defined
for (const sourceGroup of moduleGroups) {
for (const targetGroup of moduleGroups) {
if (sourceGroup.domain === targetGroup.domain) continue;
if (targetGroup.domain === 'framework') continue;
// Check if this import is allowed by an exception
const isException = crossDomainExceptions?.some((exception) => {
const sourceMatches = matchesGlobPattern(sourceGroup, exception.from);
const targetMatches = matchesGlobPattern(targetGroup, exception.to);
return sourceMatches && targetMatches;
});
if (isException) continue;
pushRule(
`cross-domain-${sourceGroup.domain}-to-${targetGroup.domain}`,
`Cross-domain import: ${sourceGroup.domain} cannot import from ${targetGroup.domain}`,
sourceGroup,
targetGroup,
);
}
}
return;
}
for (const sourceGroup of moduleGroups) {
for (const targetGroup of moduleGroups) {
if (sourceGroup.domain === targetGroup.domain) continue;
const sourceDomainRule = crossDomainRules[sourceGroup.domain];
if (!sourceDomainRule) {
// If domain not in rules, deny all cross-domain imports
pushRule(
`cross-domain-${sourceGroup.domain}-to-${targetGroup.domain}`,
`Cross-domain import: ${sourceGroup.domain} cannot import from ${targetGroup.domain} (domain not in crossDomainRules)`,
sourceGroup,
targetGroup,
);
continue;
}
// Check if target domain is in the allowed list
const mayImportFrom = sourceDomainRule.mayImportFrom || [];
const isAllowed = mayImportFrom.includes(targetGroup.domain);
if (isAllowed) {
// Check if this import is explicitly denied by an exception (exceptions can override rules)
const isException = crossDomainExceptions?.some((exception) => {
const sourceMatches = matchesGlobPattern(sourceGroup, exception.from);
const targetMatches = matchesGlobPattern(targetGroup, exception.to);
return sourceMatches && targetMatches;
});
// Exceptions allow imports, so if there's an exception, skip the rule
if (isException) continue;
// Import is allowed by rule, no rule needed
continue;
}
// Import is not allowed - check if there's an exception that allows it
const isException = crossDomainExceptions?.some((exception) => {
const sourceMatches = matchesGlobPattern(sourceGroup, exception.from);
const targetMatches = matchesGlobPattern(targetGroup, exception.to);
return sourceMatches && targetMatches;
});
if (isException) continue;
// Import is denied
pushRule(
`cross-domain-${sourceGroup.domain}-to-${targetGroup.domain}`,
`Cross-domain import: ${sourceGroup.domain} cannot import from ${targetGroup.domain}. ${sourceDomainRule.reason || 'Domain rule violation'}`,
sourceGroup,
targetGroup,
);
}
}
};
const createPlaneRules = () => {
if (!planeRules) return;
for (const [sourcePlaneName, planeRule] of Object.entries(planeRules)) {
if (!planeRule.forbid || planeRule.forbid.length === 0) continue;
for (const sourceGroup of moduleGroups) {
if (sourceGroup.plane !== sourcePlaneName) continue;
for (const forbiddenPlaneName of planeRule.forbid) {
for (const targetGroup of moduleGroups) {
if (targetGroup.plane !== forbiddenPlaneName) continue;
// Check if this import is allowed by an exception
const isException = planeRule.exceptions?.some((exception) => {
const sourceMatches = matchesGlobPattern(sourceGroup, exception.from);
const targetMatches = matchesGlobPattern(targetGroup, exception.to);
return sourceMatches && targetMatches;
});
if (isException) continue;
const sourcePlaneLabel =
sourcePlaneName.charAt(0).toUpperCase() + sourcePlaneName.slice(1);
const targetPlaneLabel =
forbiddenPlaneName.charAt(0).toUpperCase() + forbiddenPlaneName.slice(1);
pushRule(
`plane-${sourcePlaneName}-to-${forbiddenPlaneName}-${sourceGroup.key}-to-${targetGroup.key}`,
`${sourcePlaneLabel} → ${targetPlaneLabel}: ${describeGroup(sourceGroup)} cannot import from ${describeGroup(targetGroup)}`,
sourceGroup,
targetGroup,
);
}
}
}
}
};
const createDriverRules = () => {
const driverGroups = moduleGroups.filter(
(group) => group.domain === 'sql' && group.layer === 'drivers',
);
for (const driverGroup of driverGroups) {
for (const sourceGroup of moduleGroups) {
if (sourceGroup.key === driverGroup.key) continue;
if (sourceGroup.domain !== 'sql') continue;
if (sourceGroup.layer === 'adapters') continue;
pushRule(
`drivers-only-adapters-${sourceGroup.domain}-${sourceGroup.layer}`,
`Drivers can only be imported by adapters: ${describeGroup(sourceGroup)} cannot import from ${describeGroup(driverGroup)}`,
sourceGroup,
driverGroup,
);
}
}
};
const createTestImportRules = () => {
forbidden.push({
name: 'packages-cannot-import-test',
comment: 'packages/** cannot import from test/** (test suites are not part of source)',
severity: 'error',
from: { path: '^packages/' },
to: { path: '^test/' },
});
};
createUpwardRules();
createCrossDomainRules();
createPlaneRules();
createDriverRules();
createTestImportRules();
export default {
forbidden,
options: {
doNotFollow: {
path: 'node_modules',
},
tsPreCompilationDeps: true,
tsConfig: {
fileName: 'tsconfig.base.json',
},
enhancedResolveOptions: {
exportsFields: ['exports'],
conditionNames: ['import', 'require', 'node', 'default'],
},
includeOnly: '^packages/',
exclude: {
path: [
'node_modules',
'\\.test\\.',
'\\.spec\\.',
'/test/',
'\\.config\\.',
'vitest\\.config',
'tsdown\\.config',
'\\.d\\.ts$',
'dist',
'coverage',
'^packages/document/',
'^test/',
],
},
reporterOptions: {
dot: {
collapsePattern: '^packages/[^/]+',
},
text: {
highlightFocused: true,
},
},
},
};