12 lines
291 B
JavaScript
Executable File
12 lines
291 B
JavaScript
Executable File
#!/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')
|
|
}) |