datasquirel/publish.sh

11 lines
151 B
Bash
Raw Normal View History

2023-12-15 10:08:23 +00:00
#!/bin/bash
if [ -z "$1" ]; then
msg="Updates"
else
msg="$1"
fi
2024-12-06 10:44:26 +00:00
npm run compile
git add . && git commit -m "$msg" && git push && npm publish