prepare.sh 150 B

12345678910
  1. #!/usr/bin/env bash
  2. set -euo pipefail
  3. if [ "${SKIP_COMPILE:-}" == true ]; then
  4. exit
  5. fi
  6. npm run clean
  7. env COMPILE_MODE=production npm run compile