-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmelos.yaml
36 lines (28 loc) · 978 Bytes
/
melos.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
name: flutter_currency_micro_app
packages:
- "app/**"
- "packages/**"
command:
bootstrap:
usePubspecOverrides: true
scripts:
postbootstrap:
run: melos generate:flutter
analyze:
run: melos exec -- "flutter analyze"
description: Run `flutter analyze` in all packages
format:
run: melos exec -- "flutter format . --set-exit-if-changed"
description: Run `flutter format .` in all packages
test:
run: melos exec --dir-exists=test -- "flutter test"
description: Run `flutter test` in all packages
dependency_graph:
run: melos list --graph
description: See all local dependencies of modules
clean:
run: melos clean
description: Clean all workspaces
generate:flutter:
run: melos exec -c 1 --depends-on="build_runner" --flutter -- "flutter pub run build_runner build --delete-conflicting-outputs"
description: Build all generated files for Flutter packages that depends on build_runner in this project.