Open
Description
Using --trackDeps
with non-versioned dependencies will produce incorrect entries in the changelog.
App A versioned, depends on:
- lib B (not versioned)
- lib C (not versioned)
Will produce:
### Dependency Updates
* lib B updated to version `0.1.0`
* lib C updated to version `0.1.0`
Even if lib B & C are not versioned, the changelog displays "updated to version 0.1.0
" which is incorrect, the message should only be "lib B
updated".
Activity