First Commit. Based off bun-sqlite
This commit is contained in:
Executable
+17
@@ -0,0 +1,17 @@
|
||||
#!/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
|
||||
Reference in New Issue
Block a user