-
Notifications
You must be signed in to change notification settings - Fork 845
/
melos.yaml
42 lines (34 loc) · 1.12 KB
/
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
name: audioplayers
repository: https://github.com/bluefireteam/audioplayers
packages:
- packages/**
- examples/**
- tutorials/**
command:
bootstrap:
# Avoid concurrent pub requests, remove when https://github.com/dart-lang/pub/issues/3404 is fixed
runPubGetInParallel: false
scripts:
lint:
run: melos analyze && melos format
description: Run all static analysis checks.
dartdoc:
run: melos exec dart doc
description: Run `dart doc` for all non-example packages.
packageFilters:
ignore: "*_example"
pub-outdated:
run: melos exec dart pub outdated
description: Run `dart pub outdated` for all packages.
pub-upgrade:
# May fails until https://github.com/dart-lang/pub/pull/3920 is released
run: melos exec dart pub upgrade --major-versions
description: Run `dart pub upgrade --major-versions` for all packages.
test:select:
run: melos exec flutter test
packageFilters:
dirExists: test
description: Run `flutter test` for selected packages.
test:
run: melos run test:select --no-select
description: Run all Flutter tests in this project.