-
-
Notifications
You must be signed in to change notification settings - Fork 95
Expand file tree
/
Copy pathmelos.yaml
More file actions
24 lines (22 loc) · 817 Bytes
/
melos.yaml
File metadata and controls
24 lines (22 loc) · 817 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
name: stac
packages:
- packages/*
- examples/*
scripts:
analyze:
exec: dart analyze .
format:
exec: dart format .
get:
exec: flutter pub get
# Run build_runner in dependency order so generated .g.dart files exist
# before packages that depend on them try to read them.
build:
steps:
- melos exec --scope="stac_core" -- "dart run build_runner build --delete-conflicting-outputs"
- melos exec --scope="stac" -- "dart run build_runner build --delete-conflicting-outputs"
- melos exec --scope="counter_example" --scope="stac_gallery" --scope="stac_webview" -- "dart run build_runner build --delete-conflicting-outputs"
watch:
exec: dart run build_runner watch --delete-conflicting-outputs
packageFilters:
ignore: [stac_framework, movie_app, stac_logger]