Closed kurochenko closed 2 years ago
The following snippet of code is not parsed correctly:
plugins { id 'application-conventions' id 'com.google.gms.google-services' id 'com.google.firebase.crashlytics' }
current result is:
"plugins": [ {} {} { "id": "com.google.firebase.crashlytics" }
expected is
"plugins": [ { "id": "application-conventions" } { "id": "com.google.gms.google-services" } { "id": "com.google.firebase.crashlytics" }
By looking into code it seems that regexp for parsing plugin lines does not support hyphen.
This should be fixed in 2.0.1, just released! Thanks for the help @kurochenko :-)
The following snippet of code is not parsed correctly:
current result is:
expected is
By looking into code it seems that regexp for parsing plugin lines does not support hyphen.