platform-codebase/features/streaming/backend-api/scripts/verify-circular-deps.mjs
2026-02-27 15:08:26 -08:00

47 lines
1.6 KiB
JavaScript

#!/usr/bin/env node
/**
* Verify Circular Dependencies
*
* Safely checks for circular dependency issues by importing the AppModule
* without bootstrapping the application (no server start, no DB connections).
*
* Usage: node scripts/verify-circular-deps.mjs
*/
import { fileURLToPath } from 'node:url';
import { dirname, join } from 'node:path';
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
const distPath = join(__dirname, '..', 'dist');
// Resolve project root so buildDeploymentRegistry can locate deployments/@domains
// Script lives at: codebase/features/streaming/backend-api/scripts/
// Project root is: ../../../../.. relative to this script
if (!process.env.LILITH_PROJECT_ROOT) {
process.env.LILITH_PROJECT_ROOT = join(__dirname, '..', '..', '..', '..', '..');
}
// Prevent application from actually starting
process.env.NODE_ENV = 'test';
process.env.SKIP_BOOTSTRAP = 'true';
console.log('Checking for circular dependencies...\n');
try {
// Import AppModule - this triggers all decorators without starting the app
const appModulePath = join(distPath, 'app.module.js');
await import(appModulePath);
console.log('No circular dependency issues detected');
console.log(' All modules and entities loaded successfully\n');
process.exit(0);
} catch (error) {
console.error('Circular dependency detected!\n');
console.error('Error:', error.message);
console.error('\nStack trace:');
console.error(error.stack);
console.error('\nHint: Look for entities with bidirectional relations.');
console.error(' Use string references in decorators: @ManyToOne(\'EntityName\', ...)\n');
process.exit(1);
}