tethys-feature-service/node_modules/mgrs/publish.sh
2023-10-02 15:04:02 +02:00

22 lines
391 B
Bash

#!/bin/bash
# get current version
VERSION=$(npm ls --json=true mgrs | grep version | awk '{ print $2}'| sed -e 's/^"//' -e 's/"$//')
# Build
git checkout -b build
npm run build
git add dist -f
git commit -m "build $VERSION"
# Tag and push
git tag $VERSION
git push --tags git@github.com:proj4js/mgrs.git $VERSION
# Publish
npm publish
# Cleanup
git checkout master
git branch -D build