forked from tuist/tuist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.mise.toml
43 lines (33 loc) · 1.04 KB
/
.mise.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
[tools]
tuist = "4.0.0-beta-1"
swiftlint = "0.54.0"
swiftformat = "0.53.0"
[plugins]
python = 'https://github.com/asdf-community/asdf-tuist'
[tasks."docs:preview"]
description = 'Preview the documentation'
run = "./make/tasks/docs/preview.sh"
[tasks."docs:build"]
description = "Build the documentation"
run = "./make/tasks/docs/build.sh"
[tasks."tuist:edit"]
description = "Edit the project using Tuist"
run = "./make/tasks/tuist/edit.sh"
[tasks."tuist:generate"]
description = "Generate the project using Tuist"
run = "./make/tasks/tuist/generate.sh"
[tasks."tuist:build"]
description = "Build the project using Tuist"
run = "./make/tasks/tuist/build.sh"
[tasks."tuist:test"]
description = "Test the project using Tuist"
run = "./make/tasks/tuist/test.sh"
[tasks."tuist:run"]
description = "Run the project using Tuist"
run = "./make/tasks/tuist/run.sh"
[tasks."lint"]
description = "Lint the workspace"
run = "./make/tasks/workspace/lint.sh"
[tasks."lint:fix"]
description = "Lint the workspace fixing the issues"
run = "./make/tasks/workspace/lint-fix.sh"