-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmelos.yaml
69 lines (58 loc) · 1.47 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: pmtiles
ide:
intellij: false
packages:
- packages/*
scripts:
test:
run: |
melos run test:dart --no-select && \
melos run test:flutter --no-select && \
melos run test:chrome --no-select
test:node:
run: melos run test:dart:node --no-select
test:chrome:
run: melos run test:dart:chrome --no-select
test:dart:
description: Run `dart test` in all dart packages.
run: dart test
exec:
failFast: true
packageFilters:
flutter: false
dirExists: test
test:flutter:
description: Run `flutter test` in all flutter packages.
run: flutter test
exec:
failFast: true
packageFilters:
flutter: true
dirExists: test
test:dart:node:
description: Run `dart test --platform node` in all dart packages.
run: dart test --platform node
exec:
concurrency: 1
failFast: true
packageFilters:
dirExists: test
test:dart:chrome:
description: Run `dart test --platform chrome` in all dart packages.
run: dart test --platform chrome
exec:
concurrency: 1
failFast: true
packageFilters:
dirExists: test
pmtiles:
description: Run the pmtiles CLI binary.
run: dart run packages/pmtiles_cli/bin/pmtiles.dart
upgrade:
run: |
melos exec -- \
"dart pub outdated && dart pub upgrade --major-versions --tighten"
melos clean
melos bootstrap
description: |
Upgrade all packages to the latest version.