mirror of
https://github.com/status-im/react-native.git
synced 2025-01-16 04:24:15 +00:00
aba4ec0c09
Reviewed By: yungsters Differential Revision: D7962462 fbshipit-source-id: 0afe2092af8703895de91a6d1400315c3173aa6d
38 lines
1003 B
JavaScript
38 lines
1003 B
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
/**
|
|
* For each file (.xcodeproj), there's an entry in `projectReferences` created
|
|
* that has two entries - `ProjectRef` - reference to a file.uuid and
|
|
* `ProductGroup` - uuid of a Products group.
|
|
*
|
|
* When projectReference is found - it's deleted and the removed value is returned
|
|
* so that ProductGroup in PBXGroup section can be removed as well.
|
|
*
|
|
* Otherwise returns null
|
|
*/
|
|
module.exports = function removeFromProjectReferences(project, file) {
|
|
const firstProject = project.getFirstProject().firstProject;
|
|
|
|
const projectRef = firstProject.projectReferences.find(
|
|
item => item.ProjectRef === file.uuid,
|
|
);
|
|
|
|
if (!projectRef) {
|
|
return null;
|
|
}
|
|
|
|
firstProject.projectReferences.splice(
|
|
firstProject.projectReferences.indexOf(projectRef),
|
|
1,
|
|
);
|
|
|
|
return projectRef;
|
|
};
|