-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmelos.yaml
More file actions
44 lines (35 loc) · 1.07 KB
/
Copy pathmelos.yaml
File metadata and controls
44 lines (35 loc) · 1.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
name: flutter_apple_camera_workspace
repository: https://github.com/Barba2k2/flutter_roomplan
packages:
- packages/*
- packages/*/example
ide:
intellij:
enabled: false
command:
bootstrap:
runPubGetInParallel: false
version:
workspaceChangelog: false
updateGitTagRefs: true
linkToCommits: true
branch: main
scripts:
analyze:
description: Run `dart analyze` across all packages.
run: melos exec -c 1 -- "dart analyze ."
format:
description: Format Dart code across all packages.
run: melos exec -c 1 -- "dart format ."
format-check:
description: Verify formatting without writing changes (CI).
run: melos exec -c 1 -- "dart format --set-exit-if-changed ."
test:
description: Run Flutter tests in every package that has a `test/` directory.
run: melos exec -c 1 --dir-exists=test -- "flutter test"
clean:
description: Run `flutter clean` in every package.
run: melos exec -c 1 -- "flutter clean"
pub-get:
description: Run `flutter pub get` in every package.
run: melos exec -c 1 -- "flutter pub get"