Update the changelog file with the known changelog entries.
()
| 162 | |
| 163 | /** Update the changelog file with the known changelog entries. */ |
| 164 | private writeToChangelogFile(): void { |
| 165 | const changelog = this.entries.map((entry) => entry.content).join(joinMarker); |
| 166 | writeFileSync(this.filePath, changelog, {}); |
| 167 | } |
| 168 | |
| 169 | /** |
| 170 | * Retrieve the changelog entries for the provide changelog path, if the file does not exist an |
no outgoing calls
no test coverage detected