-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0ed17ab
commit 55bd604
Showing
1 changed file
with
30 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
.PHONY: pubget build watch clean test analyze test-unit test-widget test-all all | ||
|
||
clean: | ||
flutter clean | ||
|
||
pubget: | ||
flutter pub get | ||
|
||
build: | ||
dart run build_runner build --delete-conflicting-outputs | ||
|
||
run: | ||
flutter run | ||
|
||
all: clean pubget build run | ||
|
||
watch: | ||
dart run build_runner watch --delete-conflicting-outputs | ||
|
||
analyze: | ||
flutter analyze | ||
|
||
test-unit: | ||
flutter test test/unit | ||
|
||
test-widget: | ||
flutter test test/widget | ||
|
||
test-all: | ||
flutter test |