-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(cli): add build command for ios #5925
Conversation
I think that adding to capacitor.config file the option like the android PR that you open before will be very good to to remove complexity in the build process. There is few options that probably help to build IPA easier --> Provisioning profile: this field i think that can be optional or not necessary because now xcode manage autosign so if you Custom build flags array for example --> -UseModernBuildSystem=YES or -xcconfig=0 @IT-MikeS thanks for your good job. |
This PR adds the build command to the Capacitor CLI which will build the native project then create an IPA.
Example usage:
npx cap build ios
additionally a custom scheme can be used either via the config file or by passing the--scheme MyScheme
flag to the build command.