Whether to skip database-related operations
Promise that resolves when generation is complete
Error if generation fails
// Full generation
await runMemberJunctionCodeGeneration();
// Skip database operations for faster UI generation
await runMemberJunctionCodeGeneration(true);
Convenience function to run the MemberJunction code generation process. Creates a new instance of RunCodeGenBase and executes the full generation pipeline.
This is the recommended way to trigger code generation from external scripts or applications.