-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathmelos.yaml
More file actions
44 lines (33 loc) · 926 Bytes
/
melos.yaml
File metadata and controls
44 lines (33 loc) · 926 Bytes
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
name: app
packages:
- app
- core/**
- dependency-injection
- infrastructure/**
- localisation
- services
- statemanagement-bloc
- statemanagement-core
- statemanagement-riverpod
- themes
scripts:
clean-all:
run: melos run build-clean && melos run flutter-clean
flutter-clean:
exec: flutter clean
build-clean:
run: melos exec --scope="app,data,domain,database_floor,network_retrofit,themes" flutter pub run build_runner clean
generate:
run: melos exec --scope="app,data,domain,database_floor,network_retrofit,themes" -- flutter pub run build_runner build --delete-conflicting-outputs
get:
exec: flutter pub get
tidy:
run: melos run format && melos run dart-fix
analyze:
exec: flutter analyze --fatal-infos --fatal-warnings
format:
exec: flutter format lib
dart-fix:
exec: dart fix --apply
test:
exec: flutter test --exclude-tags=golden