-
Notifications
You must be signed in to change notification settings - Fork 181
Expand file tree
/
Copy pathpubspec.yaml
More file actions
59 lines (49 loc) · 1.39 KB
/
pubspec.yaml
File metadata and controls
59 lines (49 loc) · 1.39 KB
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
name: maplibre_gl_workspace
publish_to: 'none'
repository: https://github.com/maplibre/flutter-maplibre-gl
issue_tracker: https://github.com/maplibre/flutter-maplibre-gl/issues
environment:
sdk: '>=3.5.0 <4.0.0'
dev_dependencies:
melos: ^7.1.1
very_good_analysis: ^10.0.0
workspace:
- scripts
- maplibre_gl
- maplibre_gl_web
- maplibre_gl_example
- maplibre_gl_platform_interface
melos:
scripts:
generate:
description: Generate layer & source properties
exec: dart run lib/generate.dart
packageFilters:
scope: maplibre_code_gen
test:
description: Run all tests
run: |
set -e
melos run test:io
melos run test:web
test:io:
description: Run IO tests
exec: flutter test
packageFilters:
scope: maplibre_gl_platform_interface
test:web:
description: Run Web tests
exec: flutter test --platform chrome
packageFilters:
scope: maplibre_gl_platform_interface
analyze-all:
description: Run static analysis on all packages
run: |
melos exec --concurrency 10 -- "dart analyze --fatal-warnings --fatal-infos"
format-all:
description: Format all packages
exec: dart format --set-exit-if-changed .
fix-all:
run: |
melos exec --concurrency 10 -- "dart fix --apply"
melos exec --concurrency 10 -- "dart format -o write ."