mirror of
https://github.com/aljazceru/breez-sdk-liquid.git
synced 2026-01-17 13:04:20 +01:00
* Add contribution guide * Apply suggestions from code review Co-authored-by: Daniel Granhão <32176319+danielgranhao@users.noreply.github.com> * Clean up generating code section --------- Co-authored-by: Daniel Granhão <32176319+danielgranhao@users.noreply.github.com>
22 lines
412 B
Makefile
22 lines
412 B
Makefile
all: fmt codegen clippy
|
|
|
|
fmt:
|
|
cd lib && cargo fmt
|
|
cd cli && cargo fmt
|
|
|
|
clippy:
|
|
cd lib && cargo clippy -- -D warnings
|
|
cd lib && cargo clippy --tests -- -D warnings
|
|
cd cli && cargo clippy -- -D warnings
|
|
|
|
test:
|
|
cd lib && cargo test
|
|
|
|
codegen: flutter-codegen react-native-codegen
|
|
|
|
flutter-codegen:
|
|
cd lib/bindings/langs/flutter && just gen
|
|
|
|
react-native-codegen:
|
|
make -C ./packages/react-native react-native
|