install:
    bun install

dev:
    bun run --watch src/index.tsx

build:
    bun build --compile --minify --target bun --outfile ./target/sepiatones_xyz ./src/index.tsx

deploy: build
    ansible-playbook -i ansible/hosts.ini ansible/deploy.yml

test:
    bun test

check:
    bunx tsc --noEmit --skipLibCheck

clean:
    rm -rf node_modules
    rm -rf dist

format:
    bun run prettier . --write
