f3ath / cider

Tools for Dart package maintainers
https://pub.dev/packages/cider
MIT License
101 stars 17 forks source link

Support for changes without quotes #40

Closed clragon closed 1 year ago

clragon commented 1 year ago

As of right now, it seems that Cider requires quotes around the text for changes. Omitting quotes, results in weird output. For example:

cider log added this is a test

gives us:

### Added
this

where as

cider log added 'this is a text'

works as intended.

I would advocate for cider to simply take all arguments after the type of the change as description, if no quotes are found. This might be a bit complicated to implement, but it would certainly be intuitive to use and convenient (because its easier to type).

clragon commented 1 year ago

changed my mind