-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathderry.yaml
75 lines (75 loc) · 1.67 KB
/
derry.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
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
info:
(scripts):
- dart scripts/info.dart
br:
build:
(description): Generate
(scripts):
- dart run build_runner build
watch:
(description): Watch
(scripts):
- dart run build_runner watch
clean:
(description): Clean
(scripts):
- dart run build_runner clean
clean_build:
(description): Clean build
(scripts):
- $br:build --delete-conflicting-outputs
pregen:
- flutter pub get
gen:
only:
(description): Generate only
(scripts):
- dart run scripts/gen_only.dart
new:
(description): Generate
(scripts):
- $br:build
clean:
(description): Clean generate
(scripts):
- $br:clean
- $br:clean_build
splash:
create:
(description): Create splash screen
(scripts):
- dart run flutter_native_splash:create --path=flutter_native_splash.yaml
remove:
(description): Remove splash screen
(scripts):
- dart run flutter_native_splash:remove
icon:
(description): Create icon
(scripts):
- dart run flutter_launcher_icons:main -f flutter_launcher_icons.yaml
l10n:
(description): Generate locales
(scripts):
- flutter gen-l10n
pub:
major:
(description): Upgrade packages to latest versions
(scripts):
- flutter pub upgrade --major-versions
git:
init:
(description): Initialize git and push to Github
(scripts):
- dart scripts/git_init.dart
push:
(description): Push to Github
(scripts):
- dart scripts/git_push.dart
origin:
(description): Set origin
(scripts):
- dart scripts/git_origin.dart
reset:
(description): Reset to commit reference
(scripts):
- dart scripts/git_reset.dart