-
Notifications
You must be signed in to change notification settings - Fork 0
/
melos.yaml
30 lines (23 loc) · 868 Bytes
/
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
name: multi_app
packages:
- packages/*
- apps/*
scripts:
analyze:
exec: dart analyze .
generate-run-config:
run: bash generate_app_run_config.sh
# build runner build
build_all:
run: dart pub global run melos exec --depends-on="build_runner" "flutter packages pub run build_runner build"
description: build_runner build all modules.
# build runner build --delete-conflicting-outputs
force_build_all:
run: dart pub global run melos exec --depends-on="build_runner" "flutter packages pub run build_runner build --delete-conflicting-outputs"
description: build_runner build all modules.
l10n:
run: dart pub global run melos exec --fail-fast --scope="*resources*" --flutter -- flutter pub run intl_utils:generate
description: Generates l10n for all app packages.
command:
bootstrap:
runPubGetInParallel: false