This commit is contained in:
niunai
2016-12-27 20:11:05 +08:00
commit 900b5d7063
16 changed files with 536 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
set -e
echo "[Mint UI for Vue 2.0]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 eleme refs/tags/v$VERSION
git push eleme master
npm publish
fi