-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpubspec.yaml
More file actions
70 lines (58 loc) · 2 KB
/
pubspec.yaml
File metadata and controls
70 lines (58 loc) · 2 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
60
61
62
63
64
65
66
67
68
69
70
# Install melos (see doc/melos.md)
# execute "melos bootstrap" to update the yaml files
name: mapsforge_flutter_monorepo
description: Offline maps with pure flutter code. Provides rotation, markers, hillshading and much more.
homepage: https://github.com/mikes222/mapsforge_flutter
repository: https://github.com/mikes222/mapsforge_flutter
# The following line prevents the package from being accidentally published to
# pub.dev using `flutter pub publish`. This is preferred for private packages.
publish_to: 'none' # Remove this line if you wish to publish to pub.dev
environment:
sdk: ^3.9.0
dependency_overrides:
#ecache:
# path: ../ecache
dev_dependencies:
melos: ^7.4.1
workspace:
- packages/mapsforge_flutter_core
- packages/mapsforge_flutter_mapfile
- packages/mapsforge_flutter_renderer
- packages/mapsforge_flutter
- packages/mapsforge_flutter_rendertheme
- apps/mapfile_converter
- apps/globe_dem_converter
- apps/simple_example
- apps/online_renderer_example
- apps/complete_example
melos:
command:
bootstrap:
dependencies:
dio: ^5.9.2
ecache: ^2.2.0
xml: ^6.6.1
dev_dependencies:
lints: ^6.1.0
# flutter_test is not compatible with newer versions currently (08/2025)
test: ^1.26.2
hooks:
post: flutter pub upgrade
scripts:
build:
description: Generates dart files
run: dart run build_runner build --delete-conflicting-outputs
packageFilters:
dependsOn: build_runner
flutter_test:
run: melos exec -c 1 --dir-exists="test" --flutter --fail-fast -- flutter test --no-pub --coverage
description: Run Flutter tests for a specific package in this project.
select-package:
flutter: true
dir-exists: test
dart_test:
run: melos exec -c 1 --dir-exists="test" --depends-on="test" --fail-fast -- dart test
description: Run Dart tests for a specific package in this project.
select-package:
flutter: false
dir-exists: test