-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpubspec.yaml
More file actions
56 lines (47 loc) · 1.46 KB
/
pubspec.yaml
File metadata and controls
56 lines (47 loc) · 1.46 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
name: nativeapi_flutter
publish_to: none
environment:
sdk: ^3.9.0
workspace:
- examples/display_example
- examples/menu_example
# - examples/multiple_window_example
- examples/storage_example
- examples/tray_icon_example
- examples/window_example
- packages/cnativeapi
- packages/cnativeapi/example
- packages/native_message_dialog
- packages/native_preferences
- packages/native_secure_storage
- packages/nativeapi
- packages/nativeapi/example
dev_dependencies:
melos: ^7.1.1
melos:
packages:
- packages/**
- examples/**
ignore:
- "**/build/**"
- "**/.dart_tool/**"
- "**/.symlinks/**"
- "**/Pods/**"
command:
bootstrap:
runPubGetInParallel: true
scripts:
format:
description: Check Dart formatting for the whole repo.
run: dart run melos exec --fail-fast -- dart format --output=none --set-exit-if-changed .
analyze:
description: Run Flutter analyze for every package/example.
run: dart run melos exec --concurrency=1 --fail-fast -- flutter analyze --no-fatal-infos --no-fatal-warnings
test:
description: Run Flutter tests for packages/examples that have a test/ directory.
run: dart run melos exec --concurrency=1 --fail-fast -- flutter test
packageFilters:
dirExists: test
codegen:cnativeapi:
description: Regenerate cnativeapi bindings (without updating submodules).
run: python3 packages/cnativeapi/codegen.py --no-submodule-update