refactor: apply repository naming contract

Apply the accepted pre-release package, service, type, directory, and role renames as one repository-wide change.
This commit is contained in:
Tianyi Cui
2026-08-13 00:54:38 +08:00
parent 101df7cf58
commit a2d0f7f411
3281 changed files with 21730 additions and 21592 deletions
+2 -2
View File
@@ -123,7 +123,7 @@ function checkBuild(
addViolation(
violations,
tsconfigPath,
'TypeScript project references must include ../../support/invariants',
'TypeScript project references must include ../../runtime-diagnostics/invariants',
)
}
@@ -137,7 +137,7 @@ function checkBuild(
function projectReferencesInvariants(root: string, ownerDir: string, entryPath: string): boolean {
const ownerRoot = resolve(root, ownerDir)
const target = resolve(root, 'packages/support/invariants')
const target = resolve(root, 'packages/runtime-diagnostics/invariants')
const pending = [resolve(root, entryPath)]
const visited = new Set<string>()
while (pending.length > 0) {