forked from flame-engine/radiance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
melos.yaml
33 lines (27 loc) · 766 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
name: Radiance
repository: https://github.com/flame-engine/radiance
packages:
- "*"
- sandbox/*
command:
version:
linkToCommits: true
branch: main
workspaceChangelog: true
scripts:
lint:
run: melos run analyze && melos run format
description: Run all static analysis checks.
analyze:
run: melos exec flutter analyze
description: Run `flutter analyze` for all packages.
format:
run: melos exec flutter format .
description: Run `flutter format` for all packages.
coverage:
run: |
melos exec -- flutter test --coverage &&
melos exec -- genhtml coverage/lcov.info --output-directory=coverage/
select-package:
dir-exists: test
description: Generate coverage for the selected package.