diff --git a/Justfile b/Justfile index 055f1db..bd81b59 100644 --- a/Justfile +++ b/Justfile @@ -28,13 +28,12 @@ test: test-app test-packages # Run Flutter tests test-app: - @echo "Running Flutter tests" - @flutter test + flutter test # Run package tests test-packages: - @echo "Running Dart tests in packages" - @for dir in packages/*; do \ + #!/bin/bash + for dir in packages/*; do \ if [ -d $dir ]; then \ echo "Running tests in $dir"; \ (cd $dir && dart test); \ @@ -43,8 +42,9 @@ test-packages: # Analyze the project's Dart code analyze: - @flutter analyze - @for dir in packages/*; do \ + #!/bin/bash + flutter analyze + for dir in packages/*; do \ if [ -d $dir ]; then \ (cd $dir && dart analyze); \ fi \ @@ -52,4 +52,4 @@ analyze: # Generate code generate: - flutter gen-l10n \ No newline at end of file + flutter gen-l10n diff --git a/bin/.flutter-3.16.4.pkg b/bin/.flutter-3.16.5.pkg similarity index 100% rename from bin/.flutter-3.16.4.pkg rename to bin/.flutter-3.16.5.pkg diff --git a/bin/dart b/bin/dart index 9e51e03..44d2c3e 120000 --- a/bin/dart +++ b/bin/dart @@ -1 +1 @@ -.flutter-3.16.4.pkg \ No newline at end of file +.flutter-3.16.5.pkg \ No newline at end of file diff --git a/bin/flutter b/bin/flutter index 9e51e03..44d2c3e 120000 --- a/bin/flutter +++ b/bin/flutter @@ -1 +1 @@ -.flutter-3.16.4.pkg \ No newline at end of file +.flutter-3.16.5.pkg \ No newline at end of file