We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 674c6d6 commit d6ba930Copy full SHA for d6ba930
scripts/release.sh
@@ -15,19 +15,17 @@ then
15
git commit -m "build: bundle $VERSION"
16
npm version $VERSION --message "chore(release): %s"
17
18
- echo "Please check the git history and press enter"
+ # changelog
19
+ npm run changelog
20
+ echo "Please check the git history and the changelog and press enter"
21
read OKAY
22
+ git add CHANGELOG.md
23
+ git commit -m "chore(changelog): $VERSION"
24
25
# publish
26
git push origin refs/tags/v$VERSION
27
git push
28
npm publish
29
- # changelog
- npm run changelog
- echo "Please check the changelog and press enter"
- read OKAY
30
- git add CHANGELOG.md
31
- git commit -m "chore(changelog): $VERSION"
32
33
fi
0 commit comments