mirror of
https://github.com/status-im/react-native.git
synced 2025-01-17 04:50:59 +00:00
13 lines
334 B
JavaScript
13 lines
334 B
JavaScript
|
/**
|
||
|
* Given xcodeproj it returns list of products ending with
|
||
|
* .a extension, so that we know what elements add to target
|
||
|
* project static library
|
||
|
*/
|
||
|
module.exports = function getProducts(project) {
|
||
|
return project
|
||
|
.pbxGroupByName('Products')
|
||
|
.children
|
||
|
.map(c => c.comment)
|
||
|
.filter(c => c.indexOf('.a') > -1);
|
||
|
};
|