-
Notifications
You must be signed in to change notification settings - Fork 0
/
melos.yaml
62 lines (50 loc) · 1.43 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
name: nekoton_webview
packages:
- .
- example
scripts:
build_and_test:
description: GA main script
run: bash scripts/build_and_test.sh
analyze:
exec: flutter analyze .
description: Analyze a specific package in this project
check-format:
exec: dart format --set-exit-if-changed .
failFast: true
description: Check the format of a specific package in this project.
test:
run: melos run test:flutter --no-select
description: Run all Dart & Flutter tests in this project.
test:flutter:
exec: "flutter test test"
description: Run Flutter tests for a specific package in this project.
concurrency: 1
failFast: true
packageFilters:
flutter: true
dirExists: test
test:integration:
exec: "flutter test --flavor development integration_test"
description: Run Flutter teintegration teststs for a specific package in this project.
concurrency: 1
failFast: true
packageFilters:
flutter: true
dirExists: integration_test
generate-js:
run: bash scripts/generate-js.sh
description: Generate JS bindings
codegen:
run: bash scripts/codegen.sh
description: Generate Dart inpage provider api bindings
git-check:
run: bash scripts/git-check.sh
description: Check if some code changed during build
command:
clean:
hooks:
post: bash scripts/clean.sh
version:
hooks:
preCommit: melos bs && git add --all