module_path := "sourcecraft.dev/bigbes/confluence-md-utilities"

# Install mdcx binary locally
install:
    go install {{module_path}}/cmd/mdcx@latest

# Build mdcx binary
build:
    go build -o mdcx ./cmd/mdcx

# Run tests
test:
    go test ./...

# Run tests with verbose output
test-v:
    go test -v ./...
