BuildCommand constructor
BuildCommand()
Creates a new BuildCommand with all platform subcommands.
Initializes and registers all available build commands including Android, iOS, and web build targets.
Implementation
BuildCommand() {
addSubcommand(ApkCommand());
addSubcommand(AppbundleCommand());
addSubcommand(IpaCommand());
addSubcommand(IosCommand());
addSubcommand(WebCommand());
}