-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpubspec.yaml
More file actions
86 lines (76 loc) · 1.98 KB
/
pubspec.yaml
File metadata and controls
86 lines (76 loc) · 1.98 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
name: yumemi_lints_tools_workspace
environment:
sdk: ^3.7.2
dev_dependencies:
melos: ^7.0.0-dev.7
workspace:
- tools/check_lint_rules_identity
- tools/update_lint_rules/
melos:
sdkPath: .dvm/dart_sdk
command:
bootstrap:
environment:
sdk: ^3.7.2
dependencies:
async: ^2.11.0
collection: ^1.18.0
file: ^7.0.0
freezed_annotation: ^3.0.0
http: ^1.1.0
json_annotation: ^4.8.1
meta: ^1.11.0
pub_semver: ^2.1.4
riverpod: ^2.4.9
riverpod_annotation: ^2.3.3
yaml: ^3.1.2
dev_dependencies:
build_runner: ^2.4.7
custom_lint: ^0.7.5
freezed: ^3.0.4
json_serializable: ^6.7.1
lints: ^5.1.1
riverpod_generator: ^2.3.9
riverpod_lint: ^2.3.7
test: ^1.21.0
scripts:
gen:build:
description: Generate code using build_runner.
run: dart run build_runner build -d
exec:
orderDependents: true
packageFilters:
dependsOn: build_runner
upgrade:
description: Upgrade pub package dependencies.
run: dart pub upgrade
exec:
concurrency: 1
orderDependents: true
upgrade:major:
description: Upgrade pub package dependencies to latest major versions.
run: dart pub upgrade --major-versions
exec:
concurrency: 1
orderDependents: true
test:
description: Run tests for Dart packages.
run: dart test
exec:
concurrency: 1
packageFilters:
dependsOn: test
dirExists: test
report:test:
description: Generate test report for Dart packages.
run: dart test --file-reporter="json:test_report.log"
exec:
concurrency: 1
packageFilters:
dependsOn: test
dirExists: test
ide:
intellij:
# Disabling IntelliJ's automatic configuration.
# This is to support different build configurations for environments.
enabled: false