datasquirel/publish.sh
Benjamin Toby c49513c189 Updates
2024-12-06 11:44:26 +01:00

11 lines
151 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