-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmelos.yaml
More file actions
94 lines (80 loc) · 2.78 KB
/
melos.yaml
File metadata and controls
94 lines (80 loc) · 2.78 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
name: gemboard
# sdkPath: .fvm/flutter_sdk
packages:
- app/*
- core/*
- feature/*
- packages/*
command:
bootstrap:
runPubGetInParallel: false
environment:
sdk: ">=3.3.0 <4.0.0"
flutter: ">=3.0.0 <4.0.0"
dependencies:
intl: ^0.20.2
collection: ^1.18.0
flow_builder: ^0.1.0
go_router: ^14.2.1
flutter_riverpod: ^2.5.1
hooks_riverpod: ^2.5.1
flutter_hooks: ^0.20.5
riverpod_annotation: ^2.3.5
json_annotation: ^4.9.0
mix: ^1.4.0
hive: ^2.2.3
hive_flutter: ^1.1.0
path_provider: ^2.1.0
boundless_stack:
git:
url: https://github.com/definev/boundless_stack.git
ref: main
emoji_selector:
git:
url: https://github.com/definev/flutter-emoji-selector.git
ref: main
touchable:
git:
url: https://github.com/definev/touchable.git
ref: master
drift: ^2.20.0
drift_flutter: ^0.2.0
super_drag_and_drop: ^0.8.19
super_clipboard: ^0.8.19
flutter_markdown_latex:
git:
url: https://github.com/definev/flutter_markdown_latex.git
ref: main
shared_preferences: ^2.3.2
dev_dependencies:
flutter_lints: ^4.0.0
build_runner: ^2.4.11
go_router_builder: ^2.7.0
riverpod_generator: ^2.4.0
json_serializable: ^6.8.0
drift_dev: ^2.20.0
scripts:
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.
watch:all:
run: dart pub global run melos exec --depends-on="build_runner" "flutter packages pub run build_runner watch"
description: build_runner watch all modules.
watch:navigator:
run: dart pub global run melos exec --scope="*navigator*" --depends-on="build_runner" "flutter packages pub run build_runner watch --delete-conflicting-outputs"
description: build_runner watch navigator module.
build:all:force:
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.
watch:all:force:
run: dart pub global run melos exec --depends-on="build_runner" "flutter packages pub run build_runner watch --delete-conflicting-outputs"
description: build_runner watch all modules.
pub:get:all:
run: dart pub global run melos exec "flutter pub get"
description: Run pub get on all modules.
pub:upgrade:all:
run: dart pub global run melos exec "flutter pub upgrade"
description: Run pub upgrade on all modules.
delete:all:lock:
run: dart pub global run melos exec "rm -f pubspec.lock"
description: Delete all pubspec.lock files.