-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.toml
53 lines (46 loc) · 962 Bytes
/
Makefile.toml
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
[config]
skip_core_tasks = true
[tasks.ci]
description = "download frontend dependencies"
category = "Build"
cwd = "web"
command = "npm.cmd"
args = ["ci"]
[tasks.web]
description = "build frontend"
category = "Build"
cwd = "web"
dependencies = ["ci"]
command = "npm.cmd"
args = ["run","build"]
[tasks.default]
description = "build backend"
category = "Build"
dependencies = ["web"]
command = "cargo"
args = ["run"]
[tasks.build]
description = "build backend"
category = "Build"
dependencies = ["web"]
command = "cargo"
args = ["build"]
[tasks.release]
description = "Release backend"
category = "Build"
dependencies = ["web"]
command = "cargo"
args = ["build", "--release"]
[tasks.cleanfrontend]
description = "clean frontend"
category = "Build"
cwd = "web"
dependencies = ["ci"]
command = "npm.cmd"
args = ["run", "clean"]
[tasks.clean]
description = "clean backend"
category = "Build"
dependencies = ["cleanfrontend"]
command = "cargo"
args = ["clean"]