File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -11,22 +11,22 @@ help: ## Show this help
1111all : depend test valgrind-test integration-test
1212
1313depend : # # Build dependencies
14- pub get
14+ dart pub get
1515 ../install.sh
1616
1717test : # # Test all targets
18- pub run build_runner build
19- pub run test
18+ dart run build_runner build
19+ dart run test
2020
2121coverage : # # Calculate test coverage
22- pub run build_runner build
22+ dart run build_runner build
2323 # Note: only flutter test generates `.lcov` - can't use `dart test`
2424 flutter test --coverage
2525 lcov --remove coverage/lcov.info 'lib/src/native/sync.dart' 'lib/src/native/bindings/objectbox_c.dart' 'lib/src/native/bindings/bindings.dart' 'lib/src/modelinfo/*' -o coverage/lcov.info
2626 genhtml coverage/lcov.info -o coverage/html || true
2727
2828valgrind-test : # # Test all targets with valgrind
29- pub run build_runner build
29+ dart run build_runner build
3030 ./tool/valgrind.sh
3131
3232integration-test : # # Execute integration tests
@@ -35,4 +35,4 @@ integration-test: ## Execute integration tests
3535 ./tool/integration-test.sh example/flutter/objectbox_demo_sync
3636
3737format : # # Format all code
38- dartfmt -w .
38+ dart format .
You can’t perform that action at this time.
0 commit comments