Files
2026-06-19 22:20:43 -07:00

12 lines
322 B
TypeScript

import { execSync } from 'child_process';
export default async function globalSetup() {
try {
// Keep in sync with api/bin/boot-app.sh
execSync(`npm run initializers`, { stdio: 'inherit' });
} catch (error) {
console.error('Failed to run importAndExecuteInitializers:', error);
process.exit(1);
}
}