-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpubspec.yaml
More file actions
60 lines (49 loc) · 1.43 KB
/
Copy pathpubspec.yaml
File metadata and controls
60 lines (49 loc) · 1.43 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
name: friends_badge
description: "Control the Flutter & Friends conference badge."
version: 0.2.2
repository: https://github.com/flutter-and-friends/friends_badge
environment:
sdk: ^3.13.0
flutter: ">=3.47.0"
workspace:
- example
dependencies:
flutter:
sdk: flutter
image: ^4.5.4
nfc_manager: ^4.2.1
dev_dependencies:
flame_lint: ^1.4.2
flutter_test:
sdk: flutter
melos: ^8.5.0
melos:
useRootAsPackage: true
command:
version:
branch: main
releaseUrl: true
includeCommitId: true
linkToCommits: true
workspaceChangelog: false
scripts:
analyze:
run: melos exec dart analyze .
description: Run `dart analyze` for all packages.
format-check:
run: melos exec dart format . --set-exit-if-changed
description: Run `dart format` checks for all packages.
markdown-check:
run: markdownlint . --ignore-path .markdownlintignore --config .markdownlint.yaml
description: Runs the markdown linting check.
markdown-fix:
run: markdownlint . --fix --ignore-path .markdownlintignore --config .markdownlint.yaml
description: Fixes the markdown linting errors.
test:select:
run: melos exec -c 1 -- flutter test
packageFilters:
dirExists: test
description: Run `flutter test` for selected packages.
test:
run: melos run test:select --no-select
description: Run all Flutter tests in this project.