-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskfile.yml
More file actions
59 lines (47 loc) · 994 Bytes
/
Copy pathTaskfile.yml
File metadata and controls
59 lines (47 loc) · 994 Bytes
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
# https://taskfile.dev
version: "3"
tasks:
default:
desc: "Runs the project in development mode"
cmds:
- task: dev
build:
desc: "Builds the project for production"
cmds:
- bun run build
dev:
desc: "Starts the development server"
cmds:
- bun run dev
format:
desc: "Formats code with Prettier"
cmds:
- bun run format
format:ci:
desc: "Checks code formatting with Prettier (CI)"
cmds:
- bun run format:ci
lint:
desc: "Lints the code with ESLint"
cmds:
- bun run lint
lint:fix:
desc: "Fixes linting issues"
cmds:
- bun run lint:fix
lint:report:
desc: "Generates an HTML linting report"
cmds:
- bun run lint:report
start:
desc: "Starts the production server"
cmds:
- bun run start
test:
desc: "Runs tests with Vitest"
cmds:
- bun run test
test:watch:
desc: "Runs tests in watch mode"
cmds:
- bun run test:watch