We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
My workspace include 2 apps, one target for each app, I would like to change the versions only for the specific target I'm now going to deploy.
I've digged in the code and its seems today there is a filter waiting for this issue:
function getPlistFilenames(xcode) { return unique( flattenDeep( xcode.document.projects.map(project => { return project.targets.filter(Boolean).map(target => { return target.buildConfigurationsList.buildConfigurations.map( config => { return config.ast.value.get("buildSettings").get("INFOPLIST_FILE") .text; } ); }); }) ) ); }
So I think change needed is approximately:
return project.targets.filter(target => target === SPECIFIC_XCODE_TARGET).map(target => {
The text was updated successfully, but these errors were encountered:
No branches or pull requests
My workspace include 2 apps, one target for each app, I would like to change the versions only for the specific target I'm now going to deploy.
I've digged in the code and its seems today there is a filter waiting for this issue:
So I think change needed is approximately:
The text was updated successfully, but these errors were encountered: