Open
Description
Hello,
I'm running my release in two times using the new great lifecycles feature.
This is my release process:
- First I bump the version and create the changelog:
standard-version --skip.commit=true --skip.tag=true
. - Then I create my application artifact, and add my dist folder:
git add dist
- And finally I commit and tag:
standard-version -a --skip.bump=true --skip.changelog=true
But on the last part, the package.json file is not committed.
I think this is because when skipping the bump step, the configsToUpdate
object is not fullfilled in the lib/lifecycles/bump.js
file.
Thanks in advance