0
0
mirror of https://github.com/signalapp/libsignal.git synced 2024-09-20 03:52:17 +02:00
libsignal/justfile

22 lines
676 B
Makefile
Raw Normal View History

# List of commands runnable with https://github.com/casey/just
#
# When adding new recipes, include a one-line comment describing the behavior
# to be displayed by `just --list` next to the name.
_default:
echo "no default recipe; run with --list to see all recipes"
exit 1
# Regenerate bridge code for all three app languages.
generate-bridge:
rust/bridge/jni/bin/gen_java_decl.py
rust/bridge/node/bin/gen_ts_decl.py
swift/build_ffi.sh --generate-ffi
# Auto-format code in Java, Rust, Swift, and TypeScript
format-all:
cargo fmt
(cd swift && swiftformat --swiftversion 5 .)
(cd node && yarn format)
(cd java && ./gradlew spotlessApply)