You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if command -v scarb >/dev/null 2>&1; then cd contracts && scarb build; else echo "⚠️ Scarb not found. Skipping contract build."; fi
build:
# Build frontend
cd client && npm run build || echo "⚠️ Frontend build failed"
if command -v scarb >/dev/null 2>&1; then cd contracts && scarb build; else echo "⚠️ Scarb not found. Skipping contract build."; fi
if command -v scarb >/dev/null 2>&1; then cd contracts && scarb test; else echo "⚠️ Scarb not found. Please install Scarb to run tests: https://docs.swmansion.com/scarb/download.html"; fi