json-archive 0.99.1

CLI tool for tracking JSON file changes over time using delta-based archives
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env bash

case $1 in
    copyright)
        addlicense -c "Peoples Grocers LLC" -f LICENSE-header -l "agpl-3.0" -s src/ >&2
    ;;

    docs/diagnostics/json-pointer.md)
        redo-ifchange src/bin/pointer_errors_demo.rs src/pointer.rs src/pointer_errors.rs
        cargo run --quiet --bin pointer_errors_demo
    ;;

    gen)
        redo docs/diagnostics/json-pointer.md
    ;;

esac