set shell := ["bash", "-euo", "pipefail", "-c"]

default: test

test:
    yarn build
    yarn typecheck

clean:
    yarn clean

secret-scan-trufflehog:
    @command -v trufflehog >/dev/null && trufflehog filesystem . --only-verified || true
