Mercurial
view mrjunejune/test/production_bundle_exclusion_test.sh @ 261:b401627fc49e
Add JRPG mock flows and interactive previews
Add scripted mock SSE commands, custom event forwarding, animated chat turns, full-height message navigation, and a cyberpunk resume dossier.
Co-authored-by: Copilot <[email protected]>
| author | MrJuneJune <mrjunejune@users.noreply.github.com> |
|---|---|
| date | Wed, 05 Aug 2026 20:38:32 -0700 |
| parents | 667156fcd3e3 |
| children | 04fee26ecce0 |
line wrap: on
line source
#!/usr/bin/env bash set -euo pipefail bundle="$1" if find "$bundle" -type f | grep -E '/jrpg/|pixel-mplus-12-regular'; then echo "Production bundle contains development-only JRPG files" >&2 exit 1 fi if grep -R -a -l -E '"/jrpg"|/jrpg/index\.html' "$bundle"; then echo "Production bundle contains a development-only JRPG route" >&2 exit 1 fi