bun-sqlite/publish.sh
2026-03-02 10:24:40 +01:00

15 lines
142 B
Bash
Executable File

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