-
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Updated dependencies * Updated packages
- Loading branch information
1 parent
c25db7e
commit f4384e0
Showing
5 changed files
with
37 additions
and
13 deletions.
There are no files selected for viewing
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
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
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
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,13 @@ | ||
# Get workspace dependencies | ||
flutter pub get | ||
|
||
# For each package in packages that has build_runner dependency run build_runner | ||
for dir in packages/*; do | ||
if [ -f "$dir/pubspec.yaml" ]; then | ||
if grep -q build_runner "$dir/pubspec.yaml"; then | ||
pushd $dir | ||
dart run build_runner build --delete-conflicting-outputs | ||
popd | ||
fi | ||
fi | ||
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Clean workspace | ||
flutter clean | ||
|
||
# Clean packages | ||
for dir in packages/*; do | ||
if [ -f "$dir/pubspec.yaml" ]; then | ||
pushd $dir | ||
flutter clean | ||
popd | ||
fi | ||
done |