๐Ÿ“ฆ immich-app / immich

๐Ÿ“„ mise.toml ยท 30 lines
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[tasks.install]
run = "pnpm install --filter immich-e2e --frozen-lockfile"

[tasks.test]
env._.path = "./node_modules/.bin"
run = "vitest --run"

[tasks."test-web"]
env._.path = "./node_modules/.bin"
run = "playwright test"

[tasks.format]
env._.path = "./node_modules/.bin"
run = "prettier --check ."

[tasks."format-fix"]
env._.path = "./node_modules/.bin"
run = "prettier --write ."

[tasks.lint]
env._.path = "./node_modules/.bin"
run = "eslint \"src/**/*.ts\" --max-warnings 0"

[tasks."lint-fix"]
run = { task = "lint --fix" }

[tasks.check]
env._.path = "./node_modules/.bin"
run = "tsc --noEmit"