-
-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathmelos.yaml
More file actions
32 lines (29 loc) · 666 Bytes
/
melos.yaml
File metadata and controls
32 lines (29 loc) · 666 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
name: graphql_codegen
packages:
- packages/**
scripts:
analyze:
run: melos exec -- "dart analyze --fatal-infos ."
test_dart:
exec: dart test
packageFilters:
flutter: false
dirExists: "test"
test_flutter:
exec: flutter test
packageFilters:
flutter: true
dirExists: "test"
build_dart:
exec: dart run build_runner build --delete-conflicting-outputs
packageFilters:
flutter: false
build_flutter:
exec: flutter pub run build_runner build --delete-conflicting-outputs
packageFilters:
flutter: true
format:
exec: dart format
command:
bootstrap:
usePubspecOverrides: true