-
Notifications
You must be signed in to change notification settings - Fork 191
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into invalid-statement-handling
- Loading branch information
Showing
10 changed files
with
63 additions
and
72 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,7 @@ | ||
#!/bin/bash | ||
|
||
cd .. | ||
# Make foreach_module script executable, in case it isn't yet | ||
chmod u+x foreach_module.sh | ||
|
||
cd floor | ||
flutter analyze | ||
cd .. | ||
|
||
cd floor_annotation | ||
dart analyze --fatal-infos --fatal-warnings . | ||
cd .. | ||
|
||
cd floor_generator | ||
dart analyze --fatal-infos --fatal-warnings . | ||
cd .. | ||
|
||
cd example | ||
flutter analyze | ||
# Run dart analyze . on every module | ||
./foreach_module.sh 'dart analyze --fatal-infos --fatal-warnings .' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
#!/bin/bash | ||
|
||
# This script lists all Flutter module folders in this project. Next it iterates over them | ||
# and runs the passed in command in every one of those folders. | ||
# Example usage: ./foreach_module.sh 'dart analyze .' | ||
|
||
if [ $# -eq 0 ]; then | ||
echo "No arguments supplied. Pass the desired command as a string argument. | ||
For example: ./foreach_module.sh 'dart analyze .'" | ||
fi | ||
|
||
# All Flutter module folders | ||
folders=( | ||
example | ||
floor | ||
floor_annotation | ||
floor_common | ||
floor_ffi | ||
floor_generator | ||
) | ||
|
||
# Navigate up one level from where this script lives | ||
cd .. | ||
|
||
# Iterate over the modules | ||
for folder in "${folders[@]}"; do | ||
# Navigate to the module folder, or continue to the next one if that fails | ||
cd "$folder" || continue; | ||
# Run the passed in command | ||
$1 | ||
# Navigate back up to the root | ||
cd .. | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,7 @@ | ||
#!/bin/bash | ||
|
||
cd .. | ||
# Make foreach_module script executable, in case it isn't yet | ||
chmod u+x foreach_module.sh | ||
|
||
cd floor | ||
dart format . | ||
cd .. | ||
|
||
cd floor_annotation | ||
dart format . | ||
cd .. | ||
|
||
cd floor_generator | ||
dart format . | ||
cd .. | ||
|
||
cd example | ||
dart format . | ||
# Run dart format . on every module | ||
./foreach_module.sh 'dart format .' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
|
||
# Make foreach_module script executable, in case it isn't yet | ||
chmod u+x foreach_module.sh | ||
|
||
# Run build_runner on every module | ||
./foreach_module.sh 'dart run build_runner build --delete-conflicting-outputs' |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,7 @@ | ||
#!/bin/bash | ||
|
||
cd .. | ||
# Make foreach_module script executable, in case it isn't yet | ||
chmod u+x foreach_module.sh | ||
|
||
cd floor | ||
flutter packages pub get | ||
cd .. | ||
|
||
cd floor_annotation | ||
flutter packages pub get | ||
cd .. | ||
|
||
cd floor_generator | ||
flutter packages pub get | ||
cd .. | ||
|
||
cd example | ||
flutter packages pub get | ||
# Run flutter packages pub get on every module | ||
./foreach_module.sh 'flutter packages pub get' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,7 @@ | ||
#!/bin/bash | ||
|
||
cd .. | ||
# Make foreach_module script executable, in case it isn't yet | ||
chmod u+x foreach_module.sh | ||
|
||
cd floor | ||
flutter packages pub upgrade | ||
cd .. | ||
|
||
cd floor_common | ||
flutter packages pub upgrade | ||
cd .. | ||
|
||
cd floor_annotation | ||
flutter packages pub upgrade | ||
cd .. | ||
|
||
cd floor_generator | ||
flutter packages pub upgrade | ||
cd .. | ||
|
||
cd example | ||
flutter packages pub upgrade | ||
# Run flutter packages pub upgrade on every module | ||
./foreach_module.sh 'flutter packages pub upgrade' |