1
1
mirror of https://github.com/primer/css.git synced 2024-11-28 13:12:16 +03:00

Adding lerna-changelog to release-candidate script

This commit is contained in:
Jon Rohan 2017-11-10 09:01:00 -08:00
parent 80f5393a07
commit 83ddb97963

View File

@ -140,6 +140,13 @@ revertPackages()
})
return Promise.all(tasks)
})
.then(() => {
console.warn("📓 Updated CHANGELOG...\n")
return execa(`${bin}lerna-changelog`, [], { env: process.env })
.catch(error => {
console.error('lerna-changelog error:', error)
})
})
.then(() => notify('success'))
})
})