-
Notifications
You must be signed in to change notification settings - Fork 37
/
melos.yaml
44 lines (41 loc) · 973 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
37
38
39
40
41
42
43
44
name: envied
packages:
- "**"
command:
bootstrap:
usePubspecOverrides: true
scripts:
test:
run: melos exec --no-private -c 1 "dart test --coverage=coverage"
env:
ENV1: one
Env2: two
env3: three
SYSTEM_VAR: system_var
lcov:
run: melos exec --no-private -c 1 "dart pub global run coverage:test_with_coverage"
env:
ENV1: one
Env2: two
env3: three
SYSTEM_VAR: system_var
coverage:
run: melos exec --no-private -c 1 "dart pub global run code_coverage -u -o"
env:
ENV1: one
Env2: two
env3: three
SYSTEM_VAR: system_var
validate: >
melos exec -c 1 "dart analyze && dart format . --set-exit-if-changed"
format: >
melos exec -c 1 "dart format ."
doc: >
melos exec -c 1 --ignore="example/**" "dart doc ."
env:
run: dart run scripts/propagate_readme.dart
env:
ENV1: one
Env2: two
env3: three
SYSTEM_VAR: 'system_var'