feat: implement phase 5 bun_bundle bootstrap

This commit is contained in:
Eric
2026-03-04 03:30:07 +00:00
parent 7a77e04039
commit dbc2ca0bc9
7 changed files with 164 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
#!/usr/bin/env bash
set -euo pipefail
bundle="$1"
if [[ ! -f "${bundle}" ]]; then
echo "Bundle output not found: ${bundle}" >&2
exit 1
fi
if [[ ! -s "${bundle}" ]]; then
echo "Bundle output is empty: ${bundle}" >&2
exit 1
fi