-
-
Notifications
You must be signed in to change notification settings - Fork 197
/
Copy pathbuild.ts
138 lines (113 loc) · 5.47 KB
/
build.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
import { ANDROID_RELEASE_BUILD_ERROR_MESSAGE, AndroidAppBundleMessages } from "../constants";
import { ValidatePlatformCommandBase } from "./command-base";
import { hasValidAndroidSigning } from "../common/helpers";
export abstract class BuildCommandBase extends ValidatePlatformCommandBase {
constructor($options: IOptions,
protected $errors: IErrors,
$projectData: IProjectData,
$platformsDataService: IPlatformsDataService,
protected $devicePlatformsConstants: Mobile.IDevicePlatformsConstants,
protected $buildController: IBuildController,
$platformValidationService: IPlatformValidationService,
private $buildDataService: IBuildDataService,
protected $logger: ILogger) {
super($options, $platformsDataService, $platformValidationService, $projectData);
this.$projectData.initializeProjectData();
}
public dashedOptions = {
watch: { type: OptionType.Boolean, default: false, hasSensitiveValue: false },
hmr: { type: OptionType.Boolean, default: false, hasSensitiveValue: false },
};
public async executeCore(args: string[]): Promise<string> {
const platform = args[0].toLowerCase();
const buildData = this.$buildDataService.getBuildData(this.$projectData.projectDir, platform, this.$options);
const outputPath = await this.$buildController.prepareAndBuild(buildData);
return outputPath;
}
protected validatePlatform(platform: string): void {
if (!this.$platformValidationService.isPlatformSupportedForOS(platform, this.$projectData)) {
this.$errors.fail(`Applications for platform ${platform} can not be built on this OS`);
}
}
protected async validateArgs(args: string[], platform: string): Promise<boolean> {
if (args.length !== 0) {
this.$errors.failWithHelp(`The arguments '${args.join(" ")}' are not valid for the current command.`);
}
const result = await this.$platformValidationService.validateOptions(this.$options.provision, this.$options.teamId, this.$projectData, platform);
return result;
}
}
export class BuildIosCommand extends BuildCommandBase implements ICommand {
public allowedParameters: ICommandParameter[] = [];
constructor(protected $options: IOptions,
$errors: IErrors,
$projectData: IProjectData,
$platformsDataService: IPlatformsDataService,
$devicePlatformsConstants: Mobile.IDevicePlatformsConstants,
$buildController: IBuildController,
$platformValidationService: IPlatformValidationService,
$logger: ILogger,
$buildDataService: IBuildDataService,
private $migrateController: IMigrateController) {
super($options, $errors, $projectData, $platformsDataService, $devicePlatformsConstants, $buildController, $platformValidationService, $buildDataService, $logger);
}
public async execute(args: string[]): Promise<void> {
await this.executeCore([this.$devicePlatformsConstants.iOS.toLowerCase()]);
}
public async canExecute(args: string[]): Promise<boolean> {
const platform = this.$devicePlatformsConstants.iOS;
if (!this.$options.force) {
await this.$migrateController.validate({ projectDir: this.$projectData.projectDir, platforms: [platform] });
}
super.validatePlatform(platform);
let canExecute = await super.canExecuteCommandBase(platform, { notConfiguredEnvOptions: { hideSyncToPreviewAppOption: true } });
if (canExecute) {
canExecute = await super.validateArgs(args, platform);
}
return canExecute;
}
}
$injector.registerCommand("build|ios", BuildIosCommand);
export class BuildAndroidCommand extends BuildCommandBase implements ICommand {
public allowedParameters: ICommandParameter[] = [];
constructor(protected $options: IOptions,
protected $errors: IErrors,
$projectData: IProjectData,
platformsDataService: IPlatformsDataService,
$devicePlatformsConstants: Mobile.IDevicePlatformsConstants,
$buildController: IBuildController,
$platformValidationService: IPlatformValidationService,
protected $androidBundleValidatorHelper: IAndroidBundleValidatorHelper,
$buildDataService: IBuildDataService,
protected $logger: ILogger,
private $migrateController: IMigrateController,
private $markingModeService: IMarkingModeService) {
super($options, $errors, $projectData, platformsDataService, $devicePlatformsConstants, $buildController, $platformValidationService, $buildDataService, $logger);
}
public async execute(args: string[]): Promise<void> {
await this.$markingModeService.handleMarkingModeFullDeprecation({ projectDir: this.$projectData.projectDir, skipWarnings: true });
await this.executeCore([this.$devicePlatformsConstants.Android.toLowerCase()]);
if (this.$options.aab) {
this.$logger.info(AndroidAppBundleMessages.ANDROID_APP_BUNDLE_DOCS_MESSAGE);
if (this.$options.release) {
this.$logger.info(AndroidAppBundleMessages.ANDROID_APP_BUNDLE_PUBLISH_DOCS_MESSAGE);
}
}
}
public async canExecute(args: string[]): Promise<boolean> {
const platform = this.$devicePlatformsConstants.Android;
if (!this.$options.force) {
await this.$migrateController.validate({ projectDir: this.$projectData.projectDir, platforms: [platform] });
}
this.$androidBundleValidatorHelper.validateRuntimeVersion(this.$projectData);
let canExecute = await super.canExecuteCommandBase(platform, { notConfiguredEnvOptions: { hideSyncToPreviewAppOption: true } });
if (canExecute) {
if (this.$options.release && !hasValidAndroidSigning(this.$options)) {
this.$errors.failWithHelp(ANDROID_RELEASE_BUILD_ERROR_MESSAGE);
}
canExecute = await super.validateArgs(args, platform);
}
return canExecute;
}
}
$injector.registerCommand("build|android", BuildAndroidCommand);