bun-sqlite/publish.sh
2026-03-08 10:11:08 +01:00

18 lines
163 B
Bash
Executable File

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