Initial commit

This commit is contained in:
Devin Zuczek
2026-06-08 18:23:40 -04:00
commit 8e644a5c20
141 changed files with 21414 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#!/bin/bash
set -eu
# Script to get version for Workers apps
if ! command -v jq >/dev/null; then
echo "ERROR: jq is required for getting the version of the Worker from package.json. Please install jq."
exit 1
fi
pkg_json_version=$(jq -r '.version' package.json)
gitsha=$(git log -1 --pretty=format:%h)
echo "$pkg_json_version-$gitsha"