-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
melos.yaml
47 lines (37 loc) · 1.22 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
name: gamepads
repository: https://github.com/flame-engine/gamepads
packages:
- packages/**
command:
version:
# Only allow versioning to happen on main branch.
branch: main
bootstrap:
# Avoid concurrent pub requests, remove when https://github.com/dart-lang/pub/issues/3404 is fixed
runPubGetInParallel: false
scripts:
lint:
run: melos run analyze && melos run format
description: Run all static analysis checks.
analyze:
run: melos exec -c 10 flutter analyze --fatal-infos
description: Run `flutter analyze` for all packages.
format:
run: melos exec flutter format . --fix
description: Run `flutter format` for all packages.
format-check:
run: melos exec flutter format . --set-exit-if-changed
description: Run `flutter format` checks for all packages.
dartdoc:
run: melos exec flutter pub run dartdoc
description: Run dartdoc checks for all non-example packages.
packageFilters:
ignore: "*_example"
test:select:
run: melos exec flutter test
packageFilters:
dirExists: test
description: Run `flutter test` for selected packages.
test:
run: melos run test:select --no-select
description: Run all Flutter tests in this project.