2016-11-14 19:12:24 +00:00
|
|
|
/**
|
2018-09-11 22:27:47 +00:00
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
2016-11-14 19:12:24 +00:00
|
|
|
*
|
2018-02-17 02:24:55 +00:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2018-05-11 19:43:49 +00:00
|
|
|
*
|
|
|
|
* @format
|
2016-11-14 19:12:24 +00:00
|
|
|
*/
|
2018-05-11 19:43:49 +00:00
|
|
|
|
2016-11-14 19:12:24 +00:00
|
|
|
'use strict';
|
|
|
|
|
2016-05-20 11:52:08 +00:00
|
|
|
const glob = require('glob');
|
|
|
|
const path = require('path');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Glob pattern to look for xcodeproj
|
|
|
|
*/
|
|
|
|
const GLOB_PATTERN = '**/*.xcodeproj';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Regexp matching all test projects
|
|
|
|
*/
|
|
|
|
const TEST_PROJECTS = /test|example|sample/i;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Base iOS folder
|
|
|
|
*/
|
|
|
|
const IOS_BASE = 'ios';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* These folders will be excluded from search to speed it up
|
|
|
|
*/
|
|
|
|
const GLOB_EXCLUDE_PATTERN = ['**/@(Pods|node_modules)/**'];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Finds iOS project by looking for all .xcodeproj files
|
|
|
|
* in given folder.
|
|
|
|
*
|
|
|
|
* Returns first match if files are found or null
|
|
|
|
*
|
|
|
|
* Note: `./ios/*.xcodeproj` are returned regardless of the name
|
|
|
|
*/
|
|
|
|
module.exports = function findProject(folder) {
|
|
|
|
const projects = glob
|
|
|
|
.sync(GLOB_PATTERN, {
|
|
|
|
cwd: folder,
|
|
|
|
ignore: GLOB_EXCLUDE_PATTERN,
|
|
|
|
})
|
|
|
|
.filter(project => {
|
|
|
|
return path.dirname(project) === IOS_BASE || !TEST_PROJECTS.test(project);
|
2016-10-24 20:12:57 +00:00
|
|
|
})
|
|
|
|
.sort((projectA, projectB) => {
|
2016-11-14 19:12:24 +00:00
|
|
|
return path.dirname(projectA) === IOS_BASE ? -1 : 1;
|
2016-05-20 11:52:08 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
if (projects.length === 0) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return projects[0];
|
|
|
|
};
|