~bigbes/confluence-md-utilities

ref: 5fabfe018459f627441085dd7f87f1f9e4e97af8 confluence-md-utilities/justfile -rw-r--r-- 352 bytes
5fabfe01 — Eugene Blikh feat: add verify command, improve round-trip fidelity 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module_path := "sourcecraft.dev/bigbes/confluence-md-utilities"

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

local-install:
    go install ./cmd/mdcx

# 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 ./...