mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-02 04:08:10 +08:00
5ff24db2ff
Add 'packages' folder to package.json#files
24 lines
461 B
Bash
24 lines
461 B
Bash
set -e
|
|
echo "Enter release version: "
|
|
read VERSION
|
|
|
|
read -p "Releasing $VERSION - are you sure? (y/n)" -n 1 -r
|
|
echo # (optional) move to a new line
|
|
if [[ $REPLY =~ ^[Yy]$ ]]
|
|
then
|
|
echo "Releasing $VERSION ..."
|
|
|
|
# build
|
|
VERSION=$VERSION npm run dist
|
|
|
|
# commit
|
|
git add -A
|
|
git commit -m "[build] $VERSION"
|
|
npm version $VERSION --message "[release] $VERSION"
|
|
|
|
# publish
|
|
git push origin refs/tags/v$VERSION
|
|
git push
|
|
npm publish --tag next
|
|
fi
|