datasquirel/publish.sh
Benjamin Toby 8f00f333aa Updates
2025-01-12 18:47:28 +01:00

14 lines
130 B
Bash
Executable File

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