chore: update release script

Modified release script to use yarn instead of npm
This commit is contained in:
Kiro Risk 2020-11-07 15:18:08 -08:00
parent f9a7337c02
commit a8a2a42003

View File

@ -8,7 +8,7 @@ read -p "Do you want to create a release? (y/n) " -n 1 -r
echo
if [[ $REPLY =~ ^[Yy]$ ]]; then
npm run standard-version -a
yarn standard-version -a
else
echo "\033[0;31mCancelling...\033[0m"
fi