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.

22 lines
372 B

#!/bin/bash
# get current version
VERSION=$(node -e "console.log(require('./package.json').version)")
# Build
git checkout -b build
node_modules/.bin/grunt
git add dist -f
git commit -m "build $VERSION"
# Tag and push
git tag $VERSION
git push --tags git@github.com:proj4js/proj4js.git $VERSION
# Publish
npm publish
# Cleanup
git checkout master
git branch -D build