(expoConfig, rawProps)
| 181 | }); |
| 182 | |
| 183 | const withAndroidColorsNight: ConfigPlugin = (expoConfig, rawProps) => |
| 184 | Expo.withAndroidColorsNight(expoConfig, async (config) => { |
| 185 | const { projectRoot } = config.modRequest; |
| 186 | const props = await transformProps(projectRoot, rawProps); |
| 187 | const addon = requireAddon(props); |
| 188 | |
| 189 | return addon != null |
| 190 | ? await addon.withAndroidColorsNight({ config, props }) |
| 191 | : config; |
| 192 | }); |
| 193 | |
| 194 | const withIOSAssets: ConfigPlugin = (expoConfig, rawProps) => |
| 195 | Expo.withDangerousMod(expoConfig, [ |
nothing calls this directly
no test coverage detected
searching dependent graphs…