-
Notifications
You must be signed in to change notification settings - Fork 102
/
derry.yaml
52 lines (43 loc) · 1.17 KB
/
derry.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
format:
- dart format lib .
- flutter pub run import_sorter:main
- flutter format lib
build: flutter pub run build_runner build --delete-conflicting-outputs
# Run whenever start working. It will generate Freezed classes
watch: flutter pub run build_runner watch --delete-conflicting-outputs
gen:
- flutter pub get
- flutter packages pub run build_runner build
build_apk_dev:
- flutter clean
- flutter pub get
- flutter build apk --flavor development -t lib/main_development.dart
build_apk_stg:
- flutter clean
- flutter pub get
- flutter build apk --flavor staging -t lib/main_staging.dart
build_apk_prod:
- flutter clean
- flutter pub get
- flutter build apk --flavor production -t lib/main_production.dart
start_ios:
- xcrun simctl list
- open /Applications/Xcode.app/Contents/Developer/Applications/Simulator.app/
clean:
- flutter clean
- flutter pub get
purge:
- pod deintegrate
#- rm Flutter/Flutter.podspec
- flutter clean
- flutter pub get
#- pod install
#- flutter run
purge_all:
- pod deintegrate
- rm Flutter/Flutter.podspec
- flutter clean
- flutter pub cache repair
- flutter pub get
#- pod install
- flutter run