greenlock.js/publish.sh

19 řádky
389 B
Bash
Surový Normální zobrazení Historie

#!/bin/bash
set -e
set -u
git fetch --all
2019-11-01 20:07:49 +00:00
git checkout master
git pull origin master
git checkout npm
git checkout master -- package.json
git checkout master -- README.md
2019-11-01 20:23:00 +00:00
git add package* README.md || true
git commit -m "bump" || true
sed -i '' -e 's|"name": ".root.greenlock"|"name": "greenlock"|' package.json
npm install --save @root/greenlock@latest
npm publish ./
git reset --hard