Add update-changelog script

This commit is contained in:
Julia Friesel
2019-05-03 08:37:32 +02:00
parent a9401d4a0f
commit 3924c04e56
3 changed files with 388 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/usr/bin/env node
const updateChangelog = require('basic-changelog')
updateChangelog('./CHANGELOG.md', err => {
if (err) {
console.error('Something went wrong trying to update the changelog:')
console.error(err)
return
}
console.log('Changelog successfully updated')
})