Made release script interactive to choose how to bump the version #944
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Moved the commands executed by
yarn release
out of the package'srelease
script and into a./scripts/release.js
to enable additional functionality. I have tested the functionality up to the new git tag being pushed, but from that point on there are no changes compared to the previousrelease
script.CHANGELOG.md now auto-updates during a release
This is so the recent, un-published changes can be read by the release script, and so the new user-defined version can be injected when npm changes the package's version.
ensures user is on
master
branchinspects CHANGELOG.md to recommend how to update the version, enforces the user's choice must be one of
major
,minor
, orpatch
if any steps fail, the release script is halted with an error code (this gif shows the script failing because the git working directory is dirty)
all stdout, stderr, and stdin pipes are passed as inherited, maintaining same output format as before