You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
798 B

9 years ago
set -e
if [[ -z $1 ]]; then
echo "Enter new version: "
read VERSION
else
VERSION=$1
fi
read -p "Releasing $VERSION - are you sure? (y/n) " -n 1 -r
echo
if [[ $REPLY =~ ^[Yy]$ ]]; then
9 years ago
echo "Releasing $VERSION ..."
export SAUCE_BUILD_ID=$VERSION:`date +"%s"`
9 years ago
npm run lint
npm run flow
npm run test:cover
npm run test:e2e
npm run test:ssr
npm run test:sauce
9 years ago
# build
VERSION=$VERSION npm run build
# update packages
cd packages/vue-template-compiler
npm version $VERSION
npm publish
cd -
cd packages/vue-server-renderer
npm version $VERSION
npm publish
cd -
# 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
9 years ago
fi