jgl 0.5.1

Multi-repo manager for jujutsu (jj)
Documentation
default:
    @just --list

# Run all checks (mirrors CI)
check:
    cargo fmt --check
    cargo clippy --all-targets -- -D warnings
    cargo nextest run

# Format code
fmt:
    cargo fmt

# Run integration tests only
integration:
    cargo nextest run --test integration

# Run tests in watch mode
dev:
    bacon test