-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathtypes.ts
More file actions
182 lines (152 loc) · 4.29 KB
/
Copy pathtypes.ts
File metadata and controls
182 lines (152 loc) · 4.29 KB
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
import type {
PublishLocalAarFlags,
PackageAarFlags,
} from '@rock-js/platform-android';
import type { BuildFlags as AppleBuildFlags } from '@rock-js/platform-apple-helpers';
export type Platform = 'swift' | 'kotlin';
export type BrownfieldCommonOptions = Partial<{
/**
* Enables verbose CLI logging.
*/
verbose: boolean;
}>;
export type BrownfieldConfigMetadata = Partial<{
$schema: string;
}>;
export type BrownieConfig = {
/**
* The output path to generate Kotlin Brownie store files at.
*/
kotlin?: string;
/**
* The package name for the Kotlin source code.
*/
kotlinPackageName?: string;
};
export type PackageIosOptions = Omit<AppleBuildFlags, 'archive' | 'local'> & {
/** Set when `--use-prebuilt-rn-core` is passed; omitted when the flag is absent (Rock applies RN version defaults). */
usePrebuiltRnCore?: boolean;
/** Set when `--use-prebuilt-expo` is passed; omitted when the flag is absent (Rock applies Expo version defaults). */
usePrebuiltExpo?: boolean;
/** When set, generate a local Swift Package Manager manifest next to the packaged XCFramework outputs. */
addSpmPackage?: boolean;
};
export type BrownfieldPackageAndroidOptions = BrownfieldCommonOptions &
Partial<PackageAarFlags>;
export type BrownfieldPublishAndroidOptions = BrownfieldCommonOptions &
Partial<PublishLocalAarFlags>;
export type BrownfieldPackageIosOptions = BrownfieldCommonOptions &
Partial<PackageIosOptions>;
/**
* Expo config plugin options for Android prebuild scaffolding.
*/
export type BrownfieldExpoAndroidConfig = {
/**
* The package name for the Android library module.
*/
packageName?: string;
/**
* Toggle minification for the generated Android library.
*/
minifyEnabled?: boolean;
/**
* Extra Proguard rules appended to the default rules.
*/
extraProguardRules?: string[];
/**
* Minimum SDK version for the Android library.
*/
minSdkVersion?: number;
/**
* Target SDK version for the Android library.
*/
targetSdkVersion?: number;
/**
* Compile SDK version for the Android library.
*/
compileSdkVersion?: number;
/**
* Maven group ID used when publishing the AAR.
*/
groupId?: string;
/**
* Maven artifact ID used when publishing the AAR.
*/
artifactId?: string;
/**
* Maven version used when publishing the AAR.
*/
version?: string;
/**
* When true, load the Brownfield Gradle plugin from
* `@callstack/react-native-brownfield/gradle-plugin/brownfield` via
* `includeBuild` instead of adding the Maven classpath dependency.
* Disabled by default.
*/
useLocalGradlePlugin?: boolean;
/**
* When true, prefer artifacts from the local Maven repository
* when resolving the Brownfield plugin dependencies.
* Disabled by default.
*/
useLocalMaven?: boolean;
/**
* Missing dimension strategies as dimension + flavor(s), e.g. "type, alpha".
*/
missingDimensionStrategies?: string[];
};
/**
* Expo config plugin options for iOS prebuild scaffolding.
*/
export type BrownfieldExpoIosConfig = {
/**
* The bundle identifier for the framework.
*/
bundleIdentifier?: string;
/**
* Custom build settings applied when building the framework.
*/
buildSettings?: Record<string, string | boolean | number>;
/**
* Minimum iOS deployment target for the generated framework.
*/
deploymentTarget?: string;
/**
* Framework version used for Apple build settings.
*/
frameworkVersion?: string;
};
export type BrownfieldAndroidConfig = Omit<
Partial<PackageAarFlags> & Partial<PublishLocalAarFlags>,
keyof BrownfieldCommonOptions
> & {
/**
* Expo config plugin options for Android Expo prebuild phase.
*/
expo?: BrownfieldExpoAndroidConfig;
};
export type BrownfieldIosConfig = Omit<
Partial<PackageIosOptions>,
keyof BrownfieldCommonOptions
> & {
/**
* Expo config plugin options for iOS Expo prebuild phase.
*/
expo?: BrownfieldExpoIosConfig;
};
export type BrownfieldConfig = BrownfieldConfigMetadata &
BrownfieldCommonOptions &
Partial<{
/**
* Brownfield Android configuration.
*/
android: BrownfieldAndroidConfig;
/**
* Brownfield iOS configuration.
*/
ios: BrownfieldIosConfig;
/**
* Brownie (state library) configuration.
*/
brownie: BrownieConfig;
}>;