runOrmCli function
Runs package commands or a project entrypoint configured with config.
When no configuration is passed, project commands load orm.config.dart in
a child Dart process. Help, initialization and explicit source generation do
not require a database. Reports go to stdout; failures go to stderr and set
the process exit code. Pass --json in arguments for machine-readable output.
Implementation
Future<void> runOrmCli(List<String> arguments, {OrmConfig? config}) async {
exitCode = await runOrmCommand(arguments, config: config);
}