-
Notifications
You must be signed in to change notification settings - Fork 909
/
Copy pathbuildOptions.ts
77 lines (74 loc) · 2.28 KB
/
buildOptions.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import {BuilderCommand} from '../../types';
import {getPlatformInfo} from '../runCommand/getPlatformInfo';
export type BuildFlags = {
mode?: string;
target?: string;
verbose?: boolean;
scheme?: string;
xcconfig?: string;
buildFolder?: string;
interactive?: boolean;
destination?: string;
extraParams?: string[];
forcePods?: boolean;
onlyPods?: boolean;
};
export const getBuildOptions = ({platformName}: BuilderCommand) => {
const {readableName} = getPlatformInfo(platformName);
const isMac = platformName === 'macos';
return [
{
name: '--mode <string>',
description:
'Explicitly set the scheme configuration to use. This option is case sensitive.',
},
{
name: '--scheme <string>',
description: 'Explicitly set Xcode scheme to use',
},
{
name: '--destination <string>',
description: 'Explicitly extend destination e.g. "arch=x86_64"',
},
{
name: '--verbose',
description: 'Do not use xcbeautify or xcpretty even if installed',
},
{
name: '--xcconfig [string]',
description: 'Explicitly set xcconfig to use',
},
{
name: '--buildFolder <string>',
description: `Location for ${readableName} build artifacts. Corresponds to Xcode's "-derivedDataPath".`,
},
{
name: '--extra-params <string>',
description: 'Custom params that will be passed to xcodebuild command.',
parse: (val: string) => val.split(' '),
},
{
name: '--target <string>',
description: 'Explicitly set Xcode target to use.',
},
{
name: '-i --interactive',
description:
'Explicitly select which scheme and configuration to use before running a build',
},
{
name: '--force-pods',
description: 'Force CocoaPods installation',
},
{
name: '--only-pods',
description: 'Only install Cocoapods, do not build the app',
},
!isMac && {
name: '--device [string]', // here we're intentionally using [] over <> to make passed value optional to allow users to run only on physical devices
description:
'Explicitly set the device to use by name or by unique device identifier . If the value is not provided,' +
'the app will run on the first available physical device.',
},
];
};