-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmise.toml
More file actions
60 lines (48 loc) · 1.87 KB
/
mise.toml
File metadata and controls
60 lines (48 loc) · 1.87 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
[tools]
bun = "1.3.11"
swift = "system"
[tasks.install-deps]
run = "bun install"
description = "Install the helper's Bun dependencies"
[tasks.fmt]
run = "swift format format --in-place --recursive Package.swift Sources Tests && bun x prettier --write README.md package.json tooling/**/*.ts .github/workflows/*.yml"
depends = ["install-deps"]
description = "Format Swift and helper sources"
[tasks.build-helper]
run = "bash scripts/build_helper.sh"
depends = ["install-deps"]
description = "Build the compiled Bun usage helper"
[tasks.build]
run = "bash scripts/build_app.sh release"
depends = ["build-helper"]
description = "Build release app bundle"
[tasks.dev]
run = "bash scripts/build_app.sh debug && .build/debug/AgentTally.app/Contents/MacOS/AgentTally"
depends = ["build-helper"]
description = "Build and run debug app bundle"
[tasks.demo]
run = "bash scripts/build_app.sh debug && .build/debug/AgentTally.app/Contents/MacOS/AgentTally --demo"
depends = ["build-helper"]
description = "Build and run debug app bundle with canned fixture data"
[tasks.run]
run = ".build/release/AgentTally.app/Contents/MacOS/AgentTally"
depends = ["build"]
description = "Build release app bundle and run"
[tasks.install]
run = "bash scripts/install.sh"
depends = ["build"]
description = "Build and install to /Applications"
[tasks.clean]
run = "swift package clean"
description = "Clean build artifacts"
[tasks.test]
run = "bash scripts/test.sh"
description = "Run the Swift test harness"
[tasks.lint]
run = "swift format lint --recursive --strict Package.swift Sources Tests && bun x prettier --check README.md package.json tooling/**/*.ts .github/workflows/*.yml"
depends = ["install-deps"]
description = "Lint Swift and helper sources"
[tasks.check]
run = "bash scripts/build_app.sh release"
depends = ["lint", "test", "build-helper"]
description = "Run lint checks, tests, and verify the release app bundle"