phpvms/public/vendor/popper.js/packages/popper/bower-publish.sh
2017-08-16 17:27:59 -05:00

15 lines
452 B
Bash
Executable File

#!/bin/sh
version="$(cat package.json | jq -r '.version')"
cp -R dist ../../dist
cp bower.json ../../bower.json
git add -f ../../dist/*
git add ../../bower.json
git commit --no-verify -m "chore(automatic): v${version} (dist files)"
git tag -a v${version} -m "chore(automatic): v${version} (tag release)"
git rm ../../dist/**/*
git rm ../../dist/*
git rm ../../bower.json
git commit --no-verify -m "chore(automatic): v${version} (dist files cleanup)"