Mercurial
view mrjunejune/test/production_bundle_exclusion_test.sh @ 262:0f45474c1b1a
Add cyberpunk JRPG blog browser
Show the latest posts in the JRPG preview and render the full blog archive and sanitized post details in the Inspect modal.
Co-authored-by: Copilot <[email protected]>
| author | MrJuneJune <mrjunejune@users.noreply.github.com> |
|---|---|
| date | Thu, 06 Aug 2026 04:08:45 -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