Prepend a changelog entry to the current changelog file.
(git: GitClient, entry: string)
| 39 | export class Changelog { |
| 40 | /** Prepend a changelog entry to the current changelog file. */ |
| 41 | static prependEntryToChangelogFile(git: GitClient, entry: string) { |
| 42 | const changelog = new this(git); |
| 43 | changelog.prependEntryToChangelogFile(entry); |
| 44 | } |
| 45 | |
| 46 | /** |
| 47 | * Move all changelog entries from the CHANGELOG.md file for versions prior to the provided |
no test coverage detected