Description:
Currently in the gradle-plugins/react/brownfield we have some variables named upperCaseVariantName. However, they do not really reflect an upper case variant, rather they reflect a Title Case variant.
An example below:
|
private val upperCaseVariantName = variant.name.replaceFirstChar(Char::titlecase) |
With this issue and the corresponding PR, we would like to replace all the instances of upperCaseVariantName to titleCaseVariantName