mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-15 10:05:48 +00:00
19 lines
234 B
Plaintext
19 lines
234 B
Plaintext
echo "PUBLISH RELEASE CANDIDATE"
|
|
|
|
function exit_on_error {
|
|
res=$?
|
|
[[ ${res:-99} -eq 0 ]] || exit $res
|
|
}
|
|
|
|
rm -rf build
|
|
|
|
npm install
|
|
gulp
|
|
npm test
|
|
exit_on_error
|
|
|
|
echo ""
|
|
echo "publish rc to npm"
|
|
npm publish --tag beta
|
|
exit_on_error
|