-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmelos.yaml
More file actions
35 lines (33 loc) · 853 Bytes
/
melos.yaml
File metadata and controls
35 lines (33 loc) · 853 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
33
34
35
name: engine_io
packages:
- packages/*
scripts:
tests:
run: >-
melos run analyze &&
melos run format &&
melos run test:example &&
melos run test:test
test:test:
run: dart test --concurrency 1
exec:
concurrency: 1
failFast: true
description: Run tests in each constituent package.
test:example:
run: dart run --verbosity error ./example/example.dart
exec:
failFast: true
description: Run the example file (example.dart) in each constituent package.
packageFilters:
dirExists: example
analyze:
run: dart analyze
exec:
failFast: true
description: Run the Dart analyzer in each constituent package.
format:
run: >-
dart format . &&
dart run import_sorter:main
description: Run the Dart formatter in each constituent package.