-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Taskfile.yaml
43 lines (38 loc) · 983 Bytes
/
Taskfile.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
version: "3"
tasks:
flutter:get:
desc: Get flutter dependencies
summary: |
Get flutter dependencies
cmds:
- flutter pub get
dart:gen:
desc: Generate dart files
summary: |
Run codegen
cmds:
- dart run build_runner build -d
dart:gen:watch:
desc: Generate dart files
summary: |
Watch codegen
cmds:
- dart run build_runner watch -d
# Template-related, safe to be removed for production
tmpl:init:
desc: Initialize template for development
summary: |
Initialize template for development.
Safe to be deleted for production.
deps:
- tmpl:git:config
cmds:
- flutter create .
tmpl:git:config:
desc: Configure git for template development
summary: |
Configure git for template development.
Safe to be deleted for production.
cmds:
- git config core.excludesfile .gitignore-dev
# Template-related, safe to be removed for production