({
iosOutputPath,
plist,
}: {
iosOutputPath: string;
plist: string | undefined;
})
| 143 | }; |
| 144 | |
| 145 | const getInfoPlistPath = ({ |
| 146 | iosOutputPath, |
| 147 | plist, |
| 148 | }: { |
| 149 | iosOutputPath: string; |
| 150 | plist: string | undefined; |
| 151 | }) => { |
| 152 | if (plist != null) { |
| 153 | const infoPlistPath = path.resolve(cwd, plist); |
| 154 | |
| 155 | if (!hfs.exists(infoPlistPath)) { |
| 156 | return log.warn(`No ${path.relative(cwd, infoPlistPath)} found`); |
| 157 | } |
| 158 | |
| 159 | return infoPlistPath; |
| 160 | } |
| 161 | |
| 162 | return path.resolve(iosOutputPath, "Info.plist"); |
| 163 | }; |
| 164 | |
| 165 | export const generate = async ({ |
| 166 | platforms, |
no outgoing calls
no test coverage detected
searching dependent graphs…