(sourceDir, project, plist)
| 54 | } |
| 55 | |
| 56 | function writePlist(sourceDir, project, plist) { |
| 57 | fs.writeFileSync( |
| 58 | getPlistPath(sourceDir, project), |
| 59 | plistWriter.build(plist) |
| 60 | ); |
| 61 | } |
| 62 | |
| 63 | // based on: https://github.com/facebook/react-native/blob/545072b/local-cli/link/ios/mapHeaderSearchPaths.js#L5 |
| 64 | function eachBuildConfiguration(project, predicate, callback) { |
nothing calls this directly
no test coverage detected