Add update-changelog script
This commit is contained in:
Executable
+12
@@ -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')
|
||||
})
|
||||
Reference in New Issue
Block a user