first commit
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user