-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpubspec.yaml
More file actions
74 lines (59 loc) · 2.07 KB
/
Copy pathpubspec.yaml
File metadata and controls
74 lines (59 loc) · 2.07 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
71
72
73
74
name: ndk_workspace
publish_to: none
description: Workspace configuration for the NDK melos monorepo.
environment:
sdk: '>=3.6.0 <4.0.0'
dev_dependencies:
melos: ^7.5.0
workspace:
- packages/bip32_keys
- packages/ndk
- packages/ndk_cache_manager_test_suite
- packages/objectbox
# - packages/sembast_cache_manager
- packages/drift
- packages/ndk_flutter
melos:
scripts:
analyze:
exec: flutter analyze --fatal-infos --fatal-warnings .
description: Analyze a specific package in this project.
check-format:
exec: dart format --set-exit-if-changed .
description: Check the format of a specific package in this project.
format:
exec: dart format .
description: Format a specific package in this project.
build:
run: melos run build:apple && melos run build:android && melos run build:other
description: Build all native libraries for the project.
build:apple:
run: bash scripts/build-apple.sh
description: Build the XCFramework for iOS and macOS.
build:android:
run: bash scripts/build-android.sh
description: Build the .tar.gz for Android.
build:other:
run: bash scripts/build-other.sh
description: Build the .tar.gz for all other platforms.
test:
run: melos run test:dart --no-select && melos run test:flutter --no-select
description: Run all Dart & Flutter tests in this project.
test:dart:
run: melos exec -c 1 --fail-fast -- "dart test test"
description: Run Dart tests for a specific package in this project.
select-package:
flutter: false
dir-exists: test
test:flutter:
run: melos exec -c 1 --fail-fast -- "flutter test test"
description: Run Flutter tests for a specific package in this project.
select-package:
flutter: true
dir-exists: test
command:
version:
hooks:
preCommit: |
melos exec --fail-fast --scope="ndk" -- "dart run build_runner build --delete-conflicting-outputs"
git add packages/ndk/lib/src/version.dart