datasquirel/publish.sh
Benjamin Toby 8a8257d17e Updates
2024-12-06 12:55:03 +01:00

12 lines
169 B
Bash
Executable File

#!/bin/bash
if [ -z "$1" ]; then
msg="Updates"
else
msg="$1"
fi
npm run compile
git add . && git commit -m "$msg" && git push && npm publish
npm run delete-ts