react-native-community / releases

React Native releases
https://github.com/facebook/react-native/
1.5k stars 407 forks source link

Allow "--verbose" without to explicit boolean flag to enable verbose changelog listings #208

Closed NickGerleman closed 3 years ago

NickGerleman commented 3 years ago

Yargs isn't set to interpret the --verbose flag as a boolean, meaning "--verbose true" is required to enable verbose listings instead of just "--verbose". The latter will be accepted, but will somewhat confusingly not enable verbose listings. Tell Yargs the type of the verbose flag is a boolean to support both forms.

kelset commented 3 years ago

Thanks Nick!