forked from YoussefLasheen/gtk_window
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmelos.yaml
47 lines (45 loc) · 1.03 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
name: gtk_window
repository: https://github.com/helpisdev/gtk_window.git
packages:
- packages/**
- .
ignore:
- "packages/**/example"
- "packages/**/examples"
- "examples"
sdkPath: auto
command:
bootstrap:
usePubspecOverrides: true
version:
includeCommitId: true
linkToCommits: true
workspaceChangelog: true
updateGitTagRefs: true
includeScopes: true
branch: main
scripts:
get:
exec: dart pub get
upgrade:
exec: dart pub upgrade
upgrade:major:
exec: dart pub upgrade --major-versions
format:check:
exec: dart format --set-exit-if-changed .
format:fix:
exec: dart format --fix .
lint:
exec: dart fix --dry-run
fix:
exec: dart fix --apply
analyze:
exec: dart analyze --fatal-infos
test:
exec: dart test
test:coverage:
exec: dart test --coverage --merge-coverage --no-pub
gen:coverage:
exec: "$MELOS_ROOT_PATH/tool/combine_coverage.sh"
gen:coverage:html:
exec: "genhtml $MELOS_ROOT_PATH/coverage/lcov.info -o $MELOS_ROOT_PATH/coverage/html"