#!/bin/bash

# Build + send to NPM
npm run build
git add -A
git commit -m "Build"
git push -u origin master
npm version patch
npm publish --access public

# Update Zélo client
cd ../zelo.client
sh get-last-shop-admin.sh
# git checkout -- webpack.config.js
# git add -A
# git commit -m "Update shop package"
# git push -u origin master



