~bigbes/confluence-md-utilities

ref: f6c846a1f16d1f6d0045c92a1c0f24429e6b901f confluence-md-utilities/justfile -rw-r--r-- 340 bytes
f6c846a1 — Eugene Blikh fix: preserve inline spacing in fmt and code-block round-trip a month ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module_path := "go.bigb.es/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 ./...