Skip to content

Commit

Permalink
Merge pull request #38 from Lenkomotive/PAINTROID-591
Browse files Browse the repository at this point in the history
PAINTROID-591 Add Makefile
  • Loading branch information
Lenkomotive authored Nov 16, 2023
2 parents 0ed17ab + 55bd604 commit 4ef9f81
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions Makefile
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

0 comments on commit 4ef9f81

Please sign in to comment.