• 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.

    Parameters

    • skipDatabaseGeneration: boolean = false

      Whether to skip database-related operations

    Returns Promise<void>

    Promise that resolves when generation is complete

    Throws

    Error if generation fails

    Example

    // Full generation
    await runMemberJunctionCodeGeneration();

    // Skip database operations for faster UI generation
    await runMemberJunctionCodeGeneration(true);